summaryrefslogtreecommitdiff
path: root/misc/Makefile
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/Makefile
parent52c0199d00e331dec81c39fb3d07ef568097ded5 (diff)
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/Makefile')
-rw-r--r--misc/Makefile7
1 files changed, 6 insertions, 1 deletions
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