summaryrefslogtreecommitdiff
path: root/nuttx/examples/ostest/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-03-29 23:44:55 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-03-29 23:44:55 +0000
commit11020b0eec6061214b2c2e8f7b0d7597faadefde (patch)
tree8ebd643a412c28399bd619673ae4d9e2207c15c7 /nuttx/examples/ostest/Makefile
parentc8604fef7bb4043e36726d7eeaa6afd068012334 (diff)
downloadnuttx-11020b0eec6061214b2c2e8f7b0d7597faadefde.tar.gz
nuttx-11020b0eec6061214b2c2e8f7b0d7597faadefde.tar.bz2
nuttx-11020b0eec6061214b2c2e8f7b0d7597faadefde.zip
Add timed mqueue test.
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@179 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/ostest/Makefile')
-rw-r--r--nuttx/examples/ostest/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/nuttx/examples/ostest/Makefile b/nuttx/examples/ostest/Makefile
index 9c8f0d6d7..161ddafe2 100644
--- a/nuttx/examples/ostest/Makefile
+++ b/nuttx/examples/ostest/Makefile
@@ -47,12 +47,17 @@ endif
ifneq ($(CONFIG_DISABLE_SIGNALS),y)
CSRCS += sighand.c
ifneq ($(CONFIG_DISABLE_PTHREAD),y)
+ifneq ($(CONFIG_DISABLE_CLOCK),y)
CSRCS += timedwait.c
endif
endif
+endif
ifneq ($(CONFIG_DISABLE_MQUEUE),y)
ifneq ($(CONFIG_DISABLE_PTHREAD),y)
CSRCS += mqueue.c
+ifneq ($(CONFIG_DISABLE_CLOCK),y)
+CSRCS += timedmqueue.c
+endif
endif
endif
ifneq ($(CONFIG_DISABLE_POSIX_TIMERS),y)