summaryrefslogtreecommitdiff
path: root/nuttx/examples/ostest/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-09-18 14:48:26 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-09-18 14:48:26 +0000
commitb1bb829bbf07e59acb1aecf24c514901b32752e2 (patch)
treee4748aef6be341f1656f646ace2d449dd3cdc72c /nuttx/examples/ostest/Makefile
parent460d93a5ee00cdc770f4e02eef186af2f363a96f (diff)
downloadpx4-nuttx-b1bb829bbf07e59acb1aecf24c514901b32752e2.tar.gz
px4-nuttx-b1bb829bbf07e59acb1aecf24c514901b32752e2.tar.bz2
px4-nuttx-b1bb829bbf07e59acb1aecf24c514901b32752e2.zip
ARM architecture supports lowconsole
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@930 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/ostest/Makefile')
-rw-r--r--nuttx/examples/ostest/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/nuttx/examples/ostest/Makefile b/nuttx/examples/ostest/Makefile
index 3eeda4f08..adb875932 100644
--- a/nuttx/examples/ostest/Makefile
+++ b/nuttx/examples/ostest/Makefile
@@ -40,7 +40,10 @@ ASRCS =
AOBJS = $(ASRCS:.S=$(OBJEXT))
CSRCS = main.c dev_null.c
ifneq ($(CONFIG_DISABLE_PTHREAD),y)
-CSRCS += cancel.c cond.c mutex.c sem.c roundrobin.c barrier.c
+CSRCS += cancel.c cond.c mutex.c sem.c barrier.c
+ifneq ($(CONFIG_RR_INTERVAL),0)
+CSRCS += roundrobin.c
+endif
ifeq ($(CONFIG_MUTEX_TYPES),y)
CSRCS += rmutex.c
endif