summaryrefslogtreecommitdiff
path: root/nuttx/examples/ostest/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-06-05 01:58:08 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-06-05 01:58:08 +0000
commit92c9dcbe893d620a6dc74b624edffd46c26316f3 (patch)
tree7558babe2223b7b7c2fb05d28ed4f13d2681a4d1 /nuttx/examples/ostest/Makefile
parent1537061e4e8d2d77fd03e0efe6338c29756b4901 (diff)
downloadpx4-nuttx-92c9dcbe893d620a6dc74b624edffd46c26316f3.tar.gz
px4-nuttx-92c9dcbe893d620a6dc74b624edffd46c26316f3.tar.bz2
px4-nuttx-92c9dcbe893d620a6dc74b624edffd46c26316f3.zip
Add recursive mutex test
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@771 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/ostest/Makefile')
-rw-r--r--nuttx/examples/ostest/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/nuttx/examples/ostest/Makefile b/nuttx/examples/ostest/Makefile
index 05f76f92f..3eeda4f08 100644
--- a/nuttx/examples/ostest/Makefile
+++ b/nuttx/examples/ostest/Makefile
@@ -41,6 +41,9 @@ 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
+ifeq ($(CONFIG_MUTEX_TYPES),y)
+CSRCS += rmutex.c
+endif
endif
ifneq ($(CONFIG_DISABLE_SIGNALS),y)
CSRCS += sighand.c