Missing comma in EVERY DELFILE/DELDIR macro call in every Makefile
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5373 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
0ae06479d8
commit
08f0823241
14
Makefile
14
Makefile
@ -174,7 +174,7 @@ else
|
||||
$(MAKE) -C $$dir clean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"; \
|
||||
done
|
||||
endif
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: # clean
|
||||
@ -182,9 +182,9 @@ ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
||||
$(Q) for %%G in ($(SUBDIRS)) do ( \
|
||||
$(MAKE) -C %%G distclean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" \
|
||||
)
|
||||
$(call DELFILE .config)
|
||||
$(call DELFILE .context)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, .config)
|
||||
$(call DELFILE, .context)
|
||||
$(call DELFILE, .depend)
|
||||
$(Q) ( if exist external ( \
|
||||
echo ********************************************************" \
|
||||
echo * The external directory/link must be removed manually *" \
|
||||
@ -194,9 +194,9 @@ else
|
||||
$(Q) for dir in $(SUBDIRS) ; do \
|
||||
$(MAKE) -C $$dir distclean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"; \
|
||||
done
|
||||
$(call DELFILE .config)
|
||||
$(call DELFILE .context)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, .config)
|
||||
$(call DELFILE, .context)
|
||||
$(call DELFILE, .depend)
|
||||
$(Q) ( if [ -e external ]; then \
|
||||
echo "********************************************************"; \
|
||||
echo "* The external directory/link must be removed manually *"; \
|
||||
|
@ -98,11 +98,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -98,11 +98,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -98,11 +98,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -101,12 +101,12 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
||||
|
@ -103,12 +103,12 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
||||
|
@ -115,11 +115,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -98,12 +98,12 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
||||
|
@ -99,11 +99,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -100,11 +100,11 @@ clean_tests:
|
||||
@$(MAKE) -C tests TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" CROSSDEV=$(CROSSDEV) clean
|
||||
|
||||
clean: clean_tests
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -51,7 +51,7 @@ $(BIN): $(OBJS)
|
||||
$(Q) $(LD) $(LDELFFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -51,7 +51,7 @@ $(BIN): $(OBJS)
|
||||
$(Q) $(LD) $(LDELFFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -105,10 +105,10 @@ endif
|
||||
# $(Q) $(LD) $(LDELFFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN1))
|
||||
$(call DELFILE $(BIN2))
|
||||
$(call DELFILE $(BIN3))
|
||||
$(call DELFILE $(BIN4))
|
||||
$(call DELFILE, $(BIN1))
|
||||
$(call DELFILE, $(BIN2))
|
||||
$(call DELFILE, $(BIN3))
|
||||
$(call DELFILE, $(BIN4))
|
||||
$(call CLEAN)
|
||||
|
||||
install: $(ALL_BIN)
|
||||
|
@ -51,7 +51,7 @@ $(BIN): $(OBJS)
|
||||
$(Q) $(LD) $(LDELFFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -51,7 +51,7 @@ $(BIN): $(OBJS)
|
||||
$(Q) $(LD) $(LDELFFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -51,7 +51,7 @@ $(BIN): $(OBJS)
|
||||
$(Q) $(LD) $(LDELFFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -51,7 +51,7 @@ $(BIN): $(OBJS)
|
||||
$(Q) $(LD) $(LDELFFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -52,7 +52,7 @@ $(BIN): $(OBJS)
|
||||
$(Q) $(LD) $(LDELFFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -51,7 +51,7 @@ $(BIN): $(OBJS)
|
||||
$(Q) $(LD) $(LDELFFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -98,12 +98,12 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE .context)
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, .context)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -94,11 +94,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -98,11 +98,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -115,11 +115,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -86,11 +86,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -86,11 +86,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -96,11 +96,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -98,11 +98,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -86,11 +86,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -98,11 +98,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -86,11 +86,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -131,13 +131,13 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(HOST_BIN))
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, $(HOST_BIN))
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
||||
|
@ -86,11 +86,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -86,11 +86,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -101,11 +101,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -86,11 +86,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -86,11 +86,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -91,11 +91,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -70,10 +70,10 @@ $(BIN): $(BIN).r2
|
||||
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE $(R2SRC))
|
||||
$(call DELFILE *.r1)
|
||||
$(call DELFILE *.r2)
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call DELFILE, $(R2SRC))
|
||||
$(call DELFILE, *.r1)
|
||||
$(call DELFILE, *.r2)
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -163,16 +163,16 @@ $(BIN3): $(BIN3).r2
|
||||
# $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN1))
|
||||
$(call DELFILE $(BIN2))
|
||||
$(call DELFILE $(BIN3))
|
||||
$(call DELFILE $(BIN4))
|
||||
$(call DELFILE $(R2SRC1))
|
||||
$(call DELFILE $(R2SRC2))
|
||||
$(call DELFILE $(R2SRC3))
|
||||
$(call DELFILE $(R2SRC4))
|
||||
$(call DELFILE *.r1)
|
||||
$(call DELFILE *.r2)
|
||||
$(call DELFILE, $(BIN1))
|
||||
$(call DELFILE, $(BIN2))
|
||||
$(call DELFILE, $(BIN3))
|
||||
$(call DELFILE, $(BIN4))
|
||||
$(call DELFILE, $(R2SRC1))
|
||||
$(call DELFILE, $(R2SRC2))
|
||||
$(call DELFILE, $(R2SRC3))
|
||||
$(call DELFILE, $(R2SRC4))
|
||||
$(call DELFILE, *.r1)
|
||||
$(call DELFILE, *.r2)
|
||||
$(call CLEAN)
|
||||
|
||||
install: $(ALL_BIN)
|
||||
|
@ -70,10 +70,10 @@ $(BIN): $(BIN).r2
|
||||
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE $(R2SRC))
|
||||
$(call DELFILE *.r1)
|
||||
$(call DELFILE *.r2)
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call DELFILE, $(R2SRC))
|
||||
$(call DELFILE, *.r1)
|
||||
$(call DELFILE, *.r2)
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -70,10 +70,10 @@ $(BIN): $(BIN).r2
|
||||
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE $(R2SRC))
|
||||
$(call DELFILE *.r1)
|
||||
$(call DELFILE *.r2)
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call DELFILE, $(R2SRC))
|
||||
$(call DELFILE, *.r1)
|
||||
$(call DELFILE, *.r2)
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -70,10 +70,10 @@ $(BIN): $(BIN).r2
|
||||
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE $(R2SRC))
|
||||
$(call DELFILE *.r1)
|
||||
$(call DELFILE *.r2)
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call DELFILE, $(R2SRC))
|
||||
$(call DELFILE, *.r1)
|
||||
$(call DELFILE, *.r2)
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -71,10 +71,10 @@ $(BIN): $(BIN).r2
|
||||
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE $(R2SRC))
|
||||
$(call DELFILE *.r1)
|
||||
$(call DELFILE *.r2)
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call DELFILE, $(R2SRC))
|
||||
$(call DELFILE, *.r1)
|
||||
$(call DELFILE, *.r2)
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -70,10 +70,10 @@ $(BIN): $(BIN).r2
|
||||
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE $(R2SRC))
|
||||
$(call DELFILE *.r1)
|
||||
$(call DELFILE *.r2)
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call DELFILE, $(R2SRC))
|
||||
$(call DELFILE, *.r1)
|
||||
$(call DELFILE, *.r2)
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -72,10 +72,10 @@ $(BIN): $(BIN).r2
|
||||
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE $(R2SRC))
|
||||
$(call DELFILE *.r1)
|
||||
$(call DELFILE *.r2)
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call DELFILE, $(R2SRC))
|
||||
$(call DELFILE, *.r1)
|
||||
$(call DELFILE, *.r2)
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -70,10 +70,10 @@ $(BIN): $(BIN).r2
|
||||
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE $(R2SRC))
|
||||
$(call DELFILE *.r1)
|
||||
$(call DELFILE *.r2)
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call DELFILE, $(R2SRC))
|
||||
$(call DELFILE, *.r1)
|
||||
$(call DELFILE, *.r2)
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -98,11 +98,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -98,11 +98,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -98,11 +98,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -102,11 +102,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -142,11 +142,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -86,11 +86,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -86,11 +86,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -87,12 +87,12 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE host$(HOSTEXEEXT))
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
$(call DELFILE, host$(HOSTEXEEXT))
|
||||
|
||||
-include Make.dep
|
||||
|
@ -96,11 +96,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -98,11 +98,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -98,11 +98,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -86,11 +86,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -103,13 +103,13 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE testdir.img)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
$(call DELFILE, testdir.img)
|
||||
|
||||
-include Make.dep
|
||||
|
||||
|
@ -87,13 +87,13 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
@$(MAKE) -f Makefile.host clean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
||||
|
@ -71,8 +71,8 @@ $(BIN): headers $(OBJS)
|
||||
$(HOSTCC) $(HOSTLDFLAGS) $(OBJS) -o $@
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN).*)
|
||||
$(call DELFILE *.o1)
|
||||
$(call DELFILE, $(BIN).*)
|
||||
$(call DELFILE, *.o1)
|
||||
$(call CLEAN)
|
||||
@rm -rf include
|
||||
|
||||
|
@ -87,12 +87,12 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
||||
|
@ -98,11 +98,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -89,13 +89,13 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
@$(MAKE) -C content clean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" CROSSDEV=$(CROSSDEV)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
||||
|
@ -98,8 +98,8 @@ $(SYMTAB): build
|
||||
|
||||
clean: $(foreach DIR, $(SUBDIRS), $(DIR)_clean)
|
||||
$(call DELFILE$(ROMFS_HDR))
|
||||
$(call DELFILE $(ROMFS_IMG))
|
||||
$(call DELFILE $(SYMTAB))
|
||||
$(call DELFILE, $(ROMFS_IMG))
|
||||
$(call DELFILE, $(SYMTAB))
|
||||
@rm -rf $(ROMFS_DIR)
|
||||
$(call CLEAN)
|
||||
|
||||
|
@ -70,10 +70,10 @@ $(BIN): $(BIN).r2
|
||||
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE $(R2SRC))
|
||||
$(call DELFILE *.r1)
|
||||
$(call DELFILE *.r2)
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call DELFILE, $(R2SRC))
|
||||
$(call DELFILE, *.r1)
|
||||
$(call DELFILE, *.r2)
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -70,10 +70,10 @@ $(BIN): $(BIN).r2
|
||||
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE $(R2SRC))
|
||||
$(call DELFILE *.r1)
|
||||
$(call DELFILE *.r2)
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call DELFILE, $(R2SRC))
|
||||
$(call DELFILE, *.r1)
|
||||
$(call DELFILE, *.r2)
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -70,10 +70,10 @@ $(BIN): $(BIN).r2
|
||||
$(Q) $(LDNXFLAT) $(LDNXFLATFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE $(R2SRC))
|
||||
$(call DELFILE *.r1)
|
||||
$(call DELFILE *.r2)
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call DELFILE, $(R2SRC))
|
||||
$(call DELFILE, *.r1)
|
||||
$(call DELFILE, *.r2)
|
||||
$(call CLEAN)
|
||||
|
||||
install:
|
||||
|
@ -98,14 +98,14 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE result.tif)
|
||||
$(call DELFILE tmpfile1.dat)
|
||||
$(call DELFILE tmpfile2.dat)
|
||||
$(call DELFILE, .built)
|
||||
$(call DELFILE, result.tif)
|
||||
$(call DELFILE, tmpfile1.dat)
|
||||
$(call DELFILE, tmpfile2.dat)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -98,11 +98,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -116,14 +116,14 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE $(TARG_BIN))
|
||||
$(call DELFILE $(HOST_BIN))
|
||||
$(call DELFILE, .built)
|
||||
$(call DELFILE, $(TARG_BIN))
|
||||
$(call DELFILE, $(HOST_BIN))
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
||||
|
@ -89,13 +89,13 @@ context:
|
||||
epend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE httpd_fsdata.c)
|
||||
$(call DELFILE, .built)
|
||||
$(call DELFILE, httpd_fsdata.c)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
||||
|
@ -85,13 +85,13 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
@$(MAKE) -f Makefile.host clean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
||||
|
@ -60,5 +60,5 @@ $(BIN): $(SRC)
|
||||
@$(HOSTCC) $(HOSTCFLAGS) $(DEFINES) $^ -o $@
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN))
|
||||
$(call DELFILE, $(BIN))
|
||||
$(call CLEAN)
|
||||
|
@ -103,12 +103,12 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
||||
|
@ -98,12 +98,12 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
||||
|
@ -96,11 +96,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -86,13 +86,13 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
@$(MAKE) -f Makefile.host clean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
||||
|
@ -71,8 +71,8 @@ $(BIN): headers $(OBJS)
|
||||
$(HOSTCC) $(HOSTLDFLAGS) $(OBJS) -o $@
|
||||
|
||||
clean:
|
||||
$(call DELFILE $(BIN).*)
|
||||
$(call DELFILE *.o1)
|
||||
$(call DELFILE, $(BIN).*)
|
||||
$(call DELFILE, *.o1)
|
||||
$(call CLEAN)
|
||||
@rm -rf net nuttx
|
||||
|
||||
|
@ -98,11 +98,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -87,12 +87,12 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
||||
|
@ -99,11 +99,11 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -86,12 +86,12 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE .context)
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, .context)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -108,12 +108,12 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .context)
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .context)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -107,13 +107,13 @@ endif
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE .context)
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, .context)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
|
||||
-include Make.dep
|
||||
|
@ -96,15 +96,15 @@ context: .context
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE .context)
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE namedapp_list.h)
|
||||
$(call DELFILE namedapp_proto.h)
|
||||
$(call DELFILE, .context)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
$(call DELFILE, namedapp_list.h)
|
||||
$(call DELFILE, namedapp_proto.h)
|
||||
|
||||
-include Make.dep
|
||||
|
||||
|
@ -84,11 +84,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -90,11 +90,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -90,11 +90,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -93,11 +93,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -106,11 +106,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -90,11 +90,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -84,11 +84,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -90,11 +90,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -90,11 +90,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -90,11 +90,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -92,11 +92,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -122,11 +122,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -106,11 +106,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
@ -90,11 +90,11 @@ context:
|
||||
depend: .depend
|
||||
|
||||
clean:
|
||||
$(call DELFILE .built)
|
||||
$(call DELFILE, .built)
|
||||
$(call CLEAN)
|
||||
|
||||
distclean: clean
|
||||
$(call DELFILE Make.dep)
|
||||
$(call DELFILE .depend)
|
||||
$(call DELFILE, Make.dep)
|
||||
$(call DELFILE, .depend)
|
||||
|
||||
-include Make.dep
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user