20 lines
357 B
Makefile
20 lines
357 B
Makefile
# Standard variables for building foreign packages
|
|
|
|
ifeq (,$(MAKEFILE_FOREIGN_VARS))
|
|
MAKEFILE_FOREIGN_VARS = TRUE
|
|
|
|
ifeq (,$(MAKEFILE_PENV_VARS))
|
|
include $(DTOOL)/include/Makefile.penv.vars
|
|
endif
|
|
|
|
# Delete the default suffixes
|
|
.SUFFIXES:
|
|
|
|
# get a dir to cd to
|
|
STARTDIR = `ctproj -r`/src/all/$(TARGET)
|
|
|
|
# Set the default target
|
|
install all : $(TARGET)
|
|
|
|
endif
|