summaryrefslogtreecommitdiff
path: root/nuttx/sched
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/sched
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/sched')
-rw-r--r--nuttx/sched/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile
index 8bd0cd80e..205a83c83 100644
--- a/nuttx/sched/Makefile
+++ b/nuttx/sched/Makefile
@@ -148,14 +148,14 @@ $(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
- touch $@
+ @$(MKDEP) $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
+ @touch $@
depend: .depend