summaryrefslogtreecommitdiff
path: root/nuttx/syscall/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-11 18:36:28 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-11 18:36:28 +0000
commitdab0480f31b5fe4d778a414f3b60e5c5b536b1bd (patch)
treeb69e31da1b3edac0b4815d212b99ac312fb194e2 /nuttx/syscall/Makefile
parent5302536d9ce61dfcae635787a7c85820c822ef33 (diff)
downloadnuttx-dab0480f31b5fe4d778a414f3b60e5c5b536b1bd.tar.gz
nuttx-dab0480f31b5fe4d778a414f3b60e5c5b536b1bd.tar.bz2
nuttx-dab0480f31b5fe4d778a414f3b60e5c5b536b1bd.zip
Completes removal bash ARCHIVE loop; Adds basic Makefile for native windows build
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5338 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/syscall/Makefile')
-rw-r--r--nuttx/syscall/Makefile20
1 files changed, 10 insertions, 10 deletions
diff --git a/nuttx/syscall/Makefile b/nuttx/syscall/Makefile
index 7d493665a..e9370a776 100644
--- a/nuttx/syscall/Makefile
+++ b/nuttx/syscall/Makefile
@@ -78,32 +78,32 @@ $(BIN2): $(STUB_OBJS)
$(call ARCHIVE, $@, "$(STUB_OBJS)")
.depend: Makefile $(SRCS)
- @$(MKDEP) $(ROOTDEPPATH) $(PROXYDEPPATH) $(STUBDEPPATH) \
+ $(Q) $(MKDEP) $(ROOTDEPPATH) $(PROXYDEPPATH) $(STUBDEPPATH) \
$(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
- @touch $@
+ $(Q) touch $@
depend: .depend
$(MKSYSCALL):
- @$(MAKE) -C $(TOPDIR)/tools -f Makefile.host mksyscall
+ $(Q) $(MAKE) -C $(TOPDIR)/tools -f Makefile.host mksyscall
.context: syscall.csv
- @(cd proxies; $(MKSYSCALL) -p $(CSVFILE);)
- @(cd stubs; $(MKSYSCALL) -s $(CSVFILE);)
- @touch $@
+ $(Q) (cd proxies; $(MKSYSCALL) -p $(CSVFILE);)
+ $(Q) (cd stubs; $(MKSYSCALL) -s $(CSVFILE);)
+ $(Q) touch $@
context: $(MKSYSCALL) .context
clean:
- @rm -f $(BIN1) $(BIN2) *~ .*.swp
+ $(Q) rm -f $(BIN1) $(BIN2) *~ .*.swp
ifneq ($(OBJEXT),)
- @rm -f proxies/*$(OBJEXT) stubs/*$(OBJEXT)
+ $(Q) rm -f proxies/*$(OBJEXT) stubs/*$(OBJEXT)
endif
$(call CLEAN)
distclean: clean
- @rm -f Make.dep .depend .context
- @rm -f proxies/*.c stubs/*.c
+ $(Q) rm -f Make.dep .depend .context
+ $(Q) rm -f proxies/*.c stubs/*.c
-include Make.dep