aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2014-10-06 18:06:43 +1000
committerinmarket <andrewh@inmarket.com.au>2014-10-06 18:06:43 +1000
commit6abd4d71d3fda52ed4d67077ac86130f7d666844 (patch)
tree194b9b6fd0614c04b6f466db6acd183b68efe627 /tools
parent5a3f22617b02ec366461be21765e636e6bdd0222 (diff)
downloaduGFX-6abd4d71d3fda52ed4d67077ac86130f7d666844.tar.gz
uGFX-6abd4d71d3fda52ed4d67077ac86130f7d666844.tar.bz2
uGFX-6abd4d71d3fda52ed4d67077ac86130f7d666844.zip
Add eCos to the new build system - untested!
Diffstat (limited to 'tools')
-rw-r--r--tools/gmake_scripts/os_ecos.mk33
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