summaryrefslogtreecommitdiff
path: root/nuttx/examples/ostest/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/examples/ostest/Makefile')
-rw-r--r--nuttx/examples/ostest/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/nuttx/examples/ostest/Makefile b/nuttx/examples/ostest/Makefile
index 22fbb2501..860bc7746 100644
--- a/nuttx/examples/ostest/Makefile
+++ b/nuttx/examples/ostest/Makefile
@@ -40,8 +40,14 @@ MKDEP = $(TOPDIR)/tools/mkdeps.sh
ASRCS =
AOBJS = $(ASRCS:.S=$(OBJEXT))
-CSRCS = main.c dev_null.c mutex.c cancel.c sem.c cond.c \
- timedwait.c mqueue.c sighand.c
+CSRCS = main.c dev_null.c mutex.c cancel.c sem.c cond.c
+ifneq ($(CONFIG_DISABLE_SIGNALS),y)
+CSRCS += timedwait.c sighand.c
+endif
+ifneq ($(CONFIG_DISABLE_MQUEUE),y)
+CSRCS += mqueue.c
+endif
+
COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)