diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gmake_scripts/os_ecos.mk | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tools/gmake_scripts/os_ecos.mk b/tools/gmake_scripts/os_ecos.mk new file mode 100644 index 00000000..b1b74554 --- /dev/null +++ b/tools/gmake_scripts/os_ecos.mk @@ -0,0 +1,33 @@ +# +# This file is subject to the terms of the GFX License. If a copy of +# the license was not distributed with this file, you can obtain one at: +# +# http://ugfx.org/license.html +# + +# See readme.txt for the make API + +# Requirements: +# +# ECOS: The location of the eCos code eg ECOS=../eCos +# + +# Optional: +# +# ECOS_LDSCRIPT The loader script - default is "" +# + +PATHLIST += ECOS + +# Not sure if this variable is needed by the ecos make. +INSTALL_DIR=$(ECOS) + +include $(ECOS)/include/pkgconf/ecos.mak + +INCPATH += $(ECOS)/include +LIBPATH += $(ECOS)/lib +LDFLAGS += -nostdlib + +ifeq ($(LDSCRIPT),) + LDSCRIPT= $(ECOS_LDSCRIPT) +endif |