From 08680a039b6ffc922731d9a1cfdff20ef204dbba Mon Sep 17 00:00:00 2001 From: patacongo Date: Thu, 1 Mar 2007 21:05:55 +0000 Subject: This creates a 8051 build that can run in 24Kb of RAM git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@26 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/examples/ostest/Makefile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'nuttx/examples/ostest/Makefile') diff --git a/nuttx/examples/ostest/Makefile b/nuttx/examples/ostest/Makefile index 860bc7746..3e071e146 100644 --- a/nuttx/examples/ostest/Makefile +++ b/nuttx/examples/ostest/Makefile @@ -40,13 +40,21 @@ MKDEP = $(TOPDIR)/tools/mkdeps.sh ASRCS = AOBJS = $(ASRCS:.S=$(OBJEXT)) -CSRCS = main.c dev_null.c mutex.c cancel.c sem.c cond.c +CSRCS = main.c dev_null.c +ifneq ($(CONFIG_DISABLE_PTHREAD),y) +CSRCS += cancel.c cond.c mutex.c sem.c +endif ifneq ($(CONFIG_DISABLE_SIGNALS),y) -CSRCS += timedwait.c sighand.c +CSRCS += sighand.c +ifneq ($(CONFIG_DISABLE_PTHREAD),y) +CSRCS += timedwait.c +endif endif ifneq ($(CONFIG_DISABLE_MQUEUE),y) +ifneq ($(CONFIG_DISABLE_PTHREAD),y) CSRCS += mqueue.c endif +endif COBJS = $(CSRCS:.c=$(OBJEXT)) -- cgit v1.2.3