summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-04-08 16:38:29 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-04-08 16:38:29 +0000
commit9dd07ee6bb99bf57e7a9b5fb819dad88f2657ac4 (patch)
treefaebebe8920257a8a7fa911e24f3977243ac921a /misc
parent2010-04-08 Joel Sherrill <joel.sherrilL@OARcorp.com> (diff)
downloadrtems-examples-9dd07ee6bb99bf57e7a9b5fb819dad88f2657ac4.tar.bz2
2010-04-08 Joel Sherrill <joel.sherrilL@OARcorp.com>
* Makefile: Do not build adamain automatically until there is a way to know if the Ada support was built.
Diffstat (limited to 'misc')
-rw-r--r--misc/ChangeLog5
-rw-r--r--misc/Makefile7
2 files changed, 11 insertions, 1 deletions
diff --git a/misc/ChangeLog b/misc/ChangeLog
index 90c08c2..c156e14 100644
--- a/misc/ChangeLog
+++ b/misc/ChangeLog
@@ -1,3 +1,8 @@
+2010-04-08 Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+ * Makefile: Do not build adamain automatically until there is a way to
+ know if the Ada support was built.
+
2009-12-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile: Add adamain test. This is a strictly C version of the
diff --git a/misc/Makefile b/misc/Makefile
index 8fe0b54..cbb25ea 100644
--- a/misc/Makefile
+++ b/misc/Makefile
@@ -6,4 +6,9 @@ include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
include $(RTEMS_CUSTOM)
include $(RTEMS_ROOT)/make/directory.cfg
-SUBDIRS=minimum bspcmdline extract_example adamain
+SUBDIRS=minimum bspcmdline extract_example
+
+# If the POSIX API isn't enabled, we can't build these
+ifeq ($(RTEMS_HAS_POSIX_API),yes)
+# SUBDIRS += adamain
+endif