10 lines
201 B
Makefile
10 lines
201 B
Makefile
|
ifeq ($(TARGET),)
|
||
|
-include Makefile.target
|
||
|
ifeq ($(TARGET),)
|
||
|
${info TARGET not defined, using target 'native'}
|
||
|
TARGET=native
|
||
|
else
|
||
|
${info using saved target '$(TARGET)'}
|
||
|
endif
|
||
|
endif
|