summaryrefslogtreecommitdiff
path: root/nuttx/syscall/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-04-01 21:36:17 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-04-01 21:36:17 +0000
commit0bdda764b71ffa94d9d624cc568c329f4440d94c (patch)
treeb15eb9e4ae02ccea849ab223ecedc324aad8d6d6 /nuttx/syscall/Makefile
parentbd032945c6126523c1f4ea6eb8d6f74f8b5d9274 (diff)
downloadnuttx-0bdda764b71ffa94d9d624cc568c329f4440d94c.tar.gz
nuttx-0bdda764b71ffa94d9d624cc568c329f4440d94c.tar.bz2
nuttx-0bdda764b71ffa94d9d624cc568c329f4440d94c.zip
Stubs are working/Proxies are close
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3451 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/syscall/Makefile')
-rw-r--r--nuttx/syscall/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/syscall/Makefile b/nuttx/syscall/Makefile
index a530b48ff..2e5433799 100644
--- a/nuttx/syscall/Makefile
+++ b/nuttx/syscall/Makefile
@@ -60,7 +60,7 @@ VPATH = proxies:stubs
BIN1 = libproxies$(LIBEXT)
BIN2 = libstubs$(LIBEXT)
-all: $(BIN)
+all: $(BIN1) $(BIN2)
$(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@)
@@ -88,7 +88,7 @@ depend: .depend
$(MKSYSCALL):
@$(MAKE) -C $(TOPDIR)/tools -f Makefile.host mksyscall
-.context: $(MKSYSCALL)
+.context: $(MKSYSCALL) syscall.csv
@(cd proxies; $(MKSYSCALL) -p $(CSVFILE);)
@(cd stubs; $(MKSYSCALL) -s $(CSVFILE);)
@touch $@