summaryrefslogtreecommitdiff
path: root/nuttx/examples/ostest
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-08 13:02:47 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-08 13:02:47 +0000
commitbb2884d0309904ee1e8a908a27884c83bb12ce5a (patch)
treebe9be369e3c8d01ca49e1b0ff5ff98840c03f054 /nuttx/examples/ostest
parent83e56741af20c97effc60906ddbc1ad7230b1f27 (diff)
downloadpx4-nuttx-bb2884d0309904ee1e8a908a27884c83bb12ce5a.tar.gz
px4-nuttx-bb2884d0309904ee1e8a908a27884c83bb12ce5a.tar.bz2
px4-nuttx-bb2884d0309904ee1e8a908a27884c83bb12ce5a.zip
ZNeo compiler now works
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@525 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/ostest')
-rw-r--r--nuttx/examples/ostest/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/examples/ostest/Makefile b/nuttx/examples/ostest/Makefile
index 28a21794f..f87e9f3d2 100644
--- a/nuttx/examples/ostest/Makefile
+++ b/nuttx/examples/ostest/Makefile
@@ -78,13 +78,13 @@ $(COBJS): %$(OBJEXT): %.c
$(CC) -c $(CFLAGS) $< -o $@
$(BIN): $(OBJS)
- ( for obj in $(OBJS) ; do \
+ @( for obj in $(OBJS) ; do \
$(AR) $@ $${obj} || \
{ echo "$(AR) $@ $obj FAILED!" ; exit 1 ; } ; \
done ; )
.depend: Makefile $(SRCS)
- $(MKDEP) $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
+ @$(MKDEP) $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
touch $@
depend: .depend