All Makefiles: Add .PRECIOUS: apps/libapps.a to every Makefile. Hopefully this will end awkward problems when you Control-C out of a build and libapps.a is deleted.

This commit is contained in:
Gregory Nutt 2017-08-13 09:35:14 -06:00
parent 929a86efde
commit a66da34f18
124 changed files with 387 additions and 279 deletions

View File

@ -63,6 +63,7 @@ else
BIN = $(APPDIR)$(DELIM)libapps$(LIBEXT) BIN = $(APPDIR)$(DELIM)libapps$(LIBEXT)
INSTALL_DIR = $(BIN_DIR) INSTALL_DIR = $(BIN_DIR)
endif endif
DEPBIN = $(APPDIR)/libapps$(LIBEXT)
ROOTDEPPATH = --dep-path . ROOTDEPPATH = --dep-path .
@ -70,7 +71,7 @@ VPATH =
all: .built all: .built
.PHONY: clean preconfig depend distclean .PHONY: clean preconfig depend distclean
.PRECIOUS: $(BIN) .PRECIOUS: $(DEPBIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)

View File

@ -77,6 +77,7 @@ BIN = libapps$(LIBEXT)
all: $(BIN) all: $(BIN)
.PHONY: import install dirlinks context context_serialize context_rest .depdirs preconfig depend clean distclean .PHONY: import install dirlinks context context_serialize context_rest .depdirs preconfig depend clean distclean
.PRECIOUS: $(BIN)
define MAKE_template define MAKE_template
$(Q) cd $(1) && $(MAKE) $(2) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" BIN_DIR="$(BIN_DIR)" $(Q) cd $(1) && $(MAKE) $(2) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" BIN_DIR="$(BIN_DIR)"

View File

@ -63,7 +63,8 @@ VPATH =
# Build Targets # Build Targets
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -135,6 +136,6 @@ distclean: clean
$(call DELFILE, builtin_list.h) $(call DELFILE, builtin_list.h)
$(call DELFILE, builtin_proto.h) $(call DELFILE, builtin_proto.h)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -40,6 +40,7 @@ include $(APPDIR)/Make.defs
all: all:
.PHONY: context depend clean distclean .PHONY: context depend clean distclean
.PRECIOUS: $(BIN)
.updated: $(DEPCONFIG) .updated: $(DEPCONFIG)
$(call DELFILE, *.bdat) $(call DELFILE, *.bdat)

View File

@ -62,13 +62,15 @@ ifeq ($(WINTOOL),y)
else else
BIN = $(APPDIR)$(DELIM)libapps$(LIBEXT) BIN = $(APPDIR)$(DELIM)libapps$(LIBEXT)
endif endif
DEPBIN = $(APPDIR)/libapps$(LIBEXT)
ROOTDEPPATH = --dep-path . ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: clean depend distclean .PHONY: clean depend distclean preconfig
.PRECIOUS: $(DEPBIN)
$(LIBCANARD_PACKNAME): $(LIBCANARD_PACKNAME):
@echo "Downloading: $@" @echo "Downloading: $@"
@ -120,6 +122,6 @@ distclean: clean
$(call DELDIR, $(LIBCANARD_UNPACKNAME)) $(call DELDIR, $(LIBCANARD_UNPACKNAME))
$(call DELFILE, $(LIBCANARD_PACKNAME)) $(call DELFILE, $(LIBCANARD_PACKNAME))
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -172,13 +172,15 @@ ifeq ($(WINTOOL),y)
else else
BIN = $(APPDIR)$(DELIM)libapps$(LIBEXT) BIN = $(APPDIR)$(DELIM)libapps$(LIBEXT)
endif endif
DEPBIN = $(APPDIR)/libapps$(LIBEXT)
ROOTDEPPATH = --dep-path . ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: clean depend distclean .PHONY: clean depend distclean preconfig
.PRECIOUS: $(DEPBIN)
$(LIBUAVCAN_PACKNAME): $(LIBUAVCAN_PACKNAME):
@echo "Downloading: $@" @echo "Downloading: $@"
@ -265,6 +267,6 @@ distclean: clean
$(call DELDIR, $(PYUAVCAN_UNPACKNAME)) $(call DELDIR, $(PYUAVCAN_UNPACKNAME))
$(call DELFILE, $(PYUAVCAN_PACKNAME)) $(call DELFILE, $(PYUAVCAN_PACKNAME))
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -90,7 +90,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: clean depend distclean .PHONY: clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -156,6 +157,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -96,7 +96,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: clean depend distclean .PHONY: clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(TARG_AOBJS): %$(OBJEXT): %.S $(TARG_AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -165,6 +166,6 @@ distclean: clean
$(call DELFILE, .depend) $(call DELFILE, .depend)
$(call DELFILE, bridge_config.h) $(call DELFILE, bridge_config.h)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -99,7 +99,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: clean depend distclean .PHONY: clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -153,6 +154,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -81,7 +81,8 @@ STACKSIZE = 2048
# Build targets # Build targets
all: .built all: .built
.PHONY: context .depend depend clean distclean .PHONY: context .depend depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -129,6 +130,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -80,7 +80,8 @@ ROOTDEPPATH = --dep-path . --dep-path tests
VPATH = tests VPATH = tests
all: .built all: .built
.PHONY: really_build clean_tests clean depend distclean .PHONY: really_build clean_tests clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -135,6 +136,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -75,6 +75,7 @@ endef
all: $(ROMFS_HDR) $(DIRLIST_HDR) $(SYMTAB_SRC) all: $(ROMFS_HDR) $(DIRLIST_HDR) $(SYMTAB_SRC)
.PHONY: all build clean install populate .PHONY: all build clean install populate
.PRECIOUS: $(BIN)
$(foreach DIR, $(BUILD_SUBDIRS), $(eval $(call DIR_template,$(DIR),build, all))) $(foreach DIR, $(BUILD_SUBDIRS), $(eval $(call DIR_template,$(DIR),build, all)))
$(foreach DIR, $(ALL_SUBDIRS), $(eval $(call DIR_template,$(DIR),clean,clean))) $(foreach DIR, $(ALL_SUBDIRS), $(eval $(call DIR_template,$(DIR),clean,clean)))

View File

@ -73,6 +73,7 @@ OBJS = $(SRCS:.c=$(OBJEXT))
all: $(BIN) all: $(BIN)
.PHONY: clean install .PHONY: clean install
.PRECIOUS: $(BIN)
$(OBJS): %$(OBJEXT): %.c $(OBJS): %$(OBJEXT): %.c
@echo "CC: $<" @echo "CC: $<"

View File

@ -73,6 +73,7 @@ OBJS = $(SRCS:.c=$(OBJEXT))
all: $(BIN) all: $(BIN)
.PHONY: clean install .PHONY: clean install
.PRECIOUS: $(BIN)
$(OBJS): %$(OBJEXT): %.c $(OBJS): %$(OBJEXT): %.c
@echo "CC: $<" @echo "CC: $<"

View File

@ -102,6 +102,7 @@ LDLIBSTDC_STUBS_LIB = $(LDLIBSTDC_STUBS_DIR)/liblibxx.a
all: $(BIN1) $(BIN2) $(BIN3) $(BIN4) $(BIN5) all: $(BIN1) $(BIN2) $(BIN3) $(BIN4) $(BIN5)
.PHONY: clean install .PHONY: clean install
.PRECIOUS: $(BIN)
$(OBJS): %$(OBJEXT): %.cpp $(OBJS): %$(OBJEXT): %.cpp
@echo "CC: $<" @echo "CC: $<"

View File

@ -73,6 +73,7 @@ OBJS = $(SRCS:.c=$(OBJEXT))
all: $(BIN) all: $(BIN)
.PHONY: clean install .PHONY: clean install
.PRECIOUS: $(BIN)
$(OBJS): %$(OBJEXT): %.c $(OBJS): %$(OBJEXT): %.c
@echo "CC: $<" @echo "CC: $<"

View File

@ -73,6 +73,7 @@ OBJS = $(SRCS:.c=$(OBJEXT))
all: $(BIN) all: $(BIN)
.PHONY: clean install .PHONY: clean install
.PRECIOUS: $(BIN)
$(OBJS): %$(OBJEXT): %.c $(OBJS): %$(OBJEXT): %.c
@echo "CC: $<" @echo "CC: $<"

View File

@ -73,6 +73,7 @@ OBJS = $(SRCS:.c=$(OBJEXT))
all: $(BIN) all: $(BIN)
.PHONY: clean install .PHONY: clean install
.PRECIOUS: $(BIN)
$(OBJS): %$(OBJEXT): %.c $(OBJS): %$(OBJEXT): %.c
@echo "CC: $<" @echo "CC: $<"

View File

@ -73,6 +73,7 @@ OBJS = $(SRCS:.c=$(OBJEXT))
all: $(BIN) all: $(BIN)
.PHONY: clean install .PHONY: clean install
.PRECIOUS: $(BIN)
$(OBJS): %$(OBJEXT): %.c $(OBJS): %$(OBJEXT): %.c
@echo "CC: $<" @echo "CC: $<"

View File

@ -74,6 +74,7 @@ OBJS = $(SRCS:.c=$(OBJEXT))
all: $(BIN) all: $(BIN)
.PHONY: clean install .PHONY: clean install
.PRECIOUS: $(BIN)
$(OBJS): %$(OBJEXT): %.c $(OBJS): %$(OBJEXT): %.c
@echo "CC: $<" @echo "CC: $<"

View File

@ -73,6 +73,7 @@ OBJS = $(SRCS:.c=$(OBJEXT))
all: $(BIN) all: $(BIN)
.PHONY: clean install .PHONY: clean install
.PRECIOUS: $(BIN)
$(OBJS): %$(OBJEXT): %.c $(OBJS): %$(OBJEXT): %.c
@echo "CC: $<" @echo "CC: $<"

View File

@ -81,7 +81,8 @@ VPATH =
all: .built all: .built
.PHONY: context clean depend distclean .PHONY: context clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -132,6 +133,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -90,7 +90,8 @@ ROOTDEPPATH = --dep-path . --dep-path drivers
VPATH = drivers VPATH = drivers
all: .built all: .built
.PHONY: really_build clean_drivers clean depend distclean .PHONY: really_build clean_drivers clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -152,6 +153,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -54,6 +54,7 @@ endef
all: $(ROMFS_HDR) $(DIRLIST_HDR) $(SYMTAB_SRC) all: $(ROMFS_HDR) $(DIRLIST_HDR) $(SYMTAB_SRC)
.PHONY: all build clean install populate .PHONY: all build clean install populate
.PRECIOUS: $(BIN)
$(foreach DIR, $(BUILD_SUBDIRS), $(eval $(call DIR_template,$(DIR),build, all))) $(foreach DIR, $(BUILD_SUBDIRS), $(eval $(call DIR_template,$(DIR),build, all)))
$(foreach DIR, $(ALL_SUBDIRS), $(eval $(call DIR_template,$(DIR),clean,clean))) $(foreach DIR, $(ALL_SUBDIRS), $(eval $(call DIR_template,$(DIR),clean,clean)))

View File

@ -76,6 +76,7 @@ OBJS = $(SRCS:.c=$(OBJEXT))
all: $(BIN) all: $(BIN)
.PHONY: clean install .PHONY: clean install
.PRECIOUS: $(BIN)
$(OBJS): %$(OBJEXT): %.c $(OBJS): %$(OBJEXT): %.c
@echo "CC: $<" @echo "CC: $<"

View File

@ -181,6 +181,7 @@ VPATH =
all: .built $(HOST_BIN) all: .built $(HOST_BIN)
.PHONY: clean depend distclean preconfig .PHONY: clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(TARG1_COBJS) $(TARG1_MAINOBJ) $(TARG2_COBJS) $(TARG2_MAINOBJ) $(TARGCMN_COBJS) : %$(OBJEXT): %.c $(TARG1_COBJS) $(TARG1_MAINOBJ) $(TARG2_COBJS) $(TARG2_MAINOBJ) $(TARGCMN_COBJS) : %$(OBJEXT): %.c
$(call COMPILE, $<, $@) $(call COMPILE, $<, $@)

View File

@ -33,11 +33,18 @@
# #
############################################################################ ############################################################################
-include $(TOPDIR)/.config
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
include $(APPDIR)/Make.defs
# NuttShell (NSH) Example # NuttShell (NSH) Example
CONFIG_EXAMPLES_NSH_PRIORITY ?= SCHED_PRIORITY_DEFAULT
CONFIG_EXAMPLES_NSH_STACKSIZE ?= 2048
APPNAME = nsh APPNAME = nsh
PRIORITY = $(CONFIG_EXAMPLES_NSH_PRIORITY)
STACKSIZE = $(CONFIG_EXAMPLES_NSH_STACKSIZE)
ASRCS = ASRCS =
CSRCS = CSRCS =

View File

@ -80,7 +80,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: headers clean depend distclean .PHONY: headers clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -126,6 +127,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -60,6 +60,7 @@ endef
all: $(ROMFS_HDR) $(ROMFS_DIRLIST) $(SYMTAB) all: $(ROMFS_HDR) $(ROMFS_DIRLIST) $(SYMTAB)
.PHONY: all build clean install populate .PHONY: all build clean install populate
.PRECIOUS: $(BIN)
$(foreach DIR, $(SUBDIRS), $(eval $(call DIR_template,$(DIR),build, all))) $(foreach DIR, $(SUBDIRS), $(eval $(call DIR_template,$(DIR),build, all)))
$(foreach DIR, $(SUBDIRS), $(eval $(call DIR_template,$(DIR),clean,clean))) $(foreach DIR, $(SUBDIRS), $(eval $(call DIR_template,$(DIR),clean,clean)))

View File

@ -80,7 +80,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: clean depend distclean .PHONY: clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -124,6 +125,6 @@ distclean: clean
$(call DELFILE, host$(HOSTEXEEXT)) $(call DELFILE, host$(HOSTEXEEXT))
$(call DELFILE, *.dSYM) $(call DELFILE, *.dSYM)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -80,7 +80,8 @@ ROOTDEPPATH = --dep-path . --dep-path filesystem
VPATH = filesystem VPATH = filesystem
all: build all: build
.PHONY: build clean_filesystem clean depend distclean .PHONY: build clean_filesystem clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -156,5 +157,5 @@ spawn_main.o: spawn_main.c \
symtab.o: filesystem/symtab.c \ symtab.o: filesystem/symtab.c \
$(TOPDIR)/include/nuttx/compiler.h \ $(TOPDIR)/include/nuttx/compiler.h \
$(TOPDIR)/include/nuttx/binfmt/symtab.h $(TOPDIR)/include/nuttx/binfmt/symtab.h
.PHONY: preconfig
preconfig: preconfig:

View File

@ -45,6 +45,7 @@ SYMTAB_SRC = $(FILESYSTEM_DIR)$(DELIM)symtab.c
all: $(ROMFS_HDR) $(SYMTAB_SRC) all: $(ROMFS_HDR) $(SYMTAB_SRC)
.PHONY: all hello/hello redirect/redirect clean populate .PHONY: all hello/hello redirect/redirect clean populate
.PRECIOUS: $(BIN)
# Create the romfs directory # Create the romfs directory

View File

@ -42,6 +42,7 @@ OBJS = $(SRCS:.c=.o)
all: $(BIN) all: $(BIN)
.PHONY: clean install .PHONY: clean install
.PRECIOUS: $(BIN)
$(OBJS): %.o: %.c $(OBJS): %.o: %.c
@echo "CC: $<" @echo "CC: $<"

View File

@ -42,6 +42,7 @@ OBJS = $(SRCS:.c=.o)
all: $(BIN) all: $(BIN)
.PHONY: clean install .PHONY: clean install
.PRECIOUS: $(BIN)
$(OBJS): %.o: %.c $(OBJS): %.o: %.c
@echo "CC: $<" @echo "CC: $<"

View File

@ -86,7 +86,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: checkgenromfs clean depend distclean .PHONY: checkgenromfs clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -151,7 +152,6 @@ distclean: clean
$(call DELFILE, .depend) $(call DELFILE, .depend)
$(call DELFILE, testdir.img) $(call DELFILE, testdir.img)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -90,7 +90,8 @@ ROOTDEPPATH = --dep-path . --dep-path lib
VPATH = lib VPATH = lib
all: .built all: .built
.PHONY: really_build clean_lib clean depend distclean .PHONY: really_build clean_lib clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -152,6 +153,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -59,6 +59,7 @@ endef
all: $(ROMFS_HDR) $(DIRLIST_HDR) $(SYMTAB_SRC) all: $(ROMFS_HDR) $(DIRLIST_HDR) $(SYMTAB_SRC)
.PHONY: all build clean install populate .PHONY: all build clean install populate
.PRECIOUS: $(BIN)
$(foreach DIR, $(BUILD_SUBDIRS), $(eval $(call DIR_template,$(DIR),build, all))) $(foreach DIR, $(BUILD_SUBDIRS), $(eval $(call DIR_template,$(DIR),build, all)))
$(foreach DIR, $(ALL_SUBDIRS), $(eval $(call DIR_template,$(DIR),clean,clean))) $(foreach DIR, $(ALL_SUBDIRS), $(eval $(call DIR_template,$(DIR),clean,clean)))

View File

@ -76,6 +76,7 @@ OBJS = $(SRCS:.c=$(OBJEXT))
all: $(BIN) all: $(BIN)
.PHONY: clean install .PHONY: clean install
.PRECIOUS: $(BIN)
$(OBJS): %$(OBJEXT): %.c $(OBJS): %$(OBJEXT): %.c
@echo "CC: $<" @echo "CC: $<"

View File

@ -76,6 +76,7 @@ OBJS = $(SRCS:.c=$(OBJEXT))
all: $(BIN) all: $(BIN)
.PHONY: clean install .PHONY: clean install
.PRECIOUS: $(BIN)
$(OBJS): %$(OBJEXT): %.c $(OBJS): %$(OBJEXT): %.c
@echo "CC: $<" @echo "CC: $<"

View File

@ -87,7 +87,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: headers clean depend distclean .PHONY: headers clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -135,7 +136,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -45,6 +45,7 @@ R2OBJ = $(R2SRC:.S=.o)
all: $(BIN) all: $(BIN)
.PHONY: clean install .PHONY: clean install
.PRECIOUS: $(BIN)
$(R1OBJS): %.o: %.c $(R1OBJS): %.o: %.c
@echo "CC: $<" @echo "CC: $<"

View File

@ -48,6 +48,7 @@ R2OBJ = $(R2SRC:.S=.o)
all: $(BIN) all: $(BIN)
.PHONY: clean install .PHONY: clean install
.PRECIOUS: $(BIN)
$(R1OBJS): %.o: %.c $(R1OBJS): %.o: %.c
@echo "CC: $<" @echo "CC: $<"

View File

@ -86,7 +86,8 @@ STACKSIZE = 2048
VPATH = VPATH =
all: .built all: .built
.PHONY: clean depend distclean .PHONY: clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -137,6 +138,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -115,7 +115,8 @@ endif
VPATH = VPATH =
all: .built all: .built
.PHONY: clean depend distclean .PHONY: clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -177,7 +178,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -161,6 +161,7 @@ VPATH =
all: .built all: .built
.PHONY: clean depend distclean preconfig .PHONY: clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(TARG1_COBJS) $(TARG1_MAINOBJ) $(TARG2_COBJS) $(TARG2_MAINOBJ) $(TARGCMN_COBJS): %$(OBJEXT): %.c $(TARG1_COBJS) $(TARG1_MAINOBJ) $(TARG2_COBJS) $(TARG2_MAINOBJ) $(TARGCMN_COBJS): %$(OBJEXT): %.c
$(call COMPILE, $<, $@) $(call COMPILE, $<, $@)

View File

@ -98,7 +98,8 @@ STACKSIZE = $(CONFIG_EXAMPLES_UDPBLASTER_STACKSIZE)
VPATH = VPATH =
all: .built $(HOST_BIN) all: .built $(HOST_BIN)
.PHONY: clean depend distclean .PHONY: clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(TARG_AOBJS): %$(OBJEXT): %.S $(TARG_AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -168,7 +169,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -86,7 +86,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: checkgenromfs clean depend distclean .PHONY: checkgenromfs clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -155,7 +156,6 @@ distclean: clean
$(call DELFILE, atestdir.img) $(call DELFILE, atestdir.img)
$(call DELFILE, btestdir.img) $(call DELFILE, btestdir.img)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -84,7 +84,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: clean depend distclean .PHONY: clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -133,7 +134,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -107,7 +107,8 @@ endif
VPATH = VPATH =
all: .built all: .built
.PHONY: clean depend distclean .PHONY: clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -169,7 +170,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -86,7 +86,8 @@ STACKSIZE = 2048
VPATH = VPATH =
all: .built all: .built
.PHONY: clean depend distclean .PHONY: clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -138,7 +139,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -69,7 +69,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)

View File

@ -64,7 +64,8 @@ VPATH =
# Build targets # Build targets
all: .built all: .built
.PHONY: context .depend depend clean distclean .PHONY: context .depend depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -94,7 +95,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -71,7 +71,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -101,6 +102,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -77,7 +77,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -107,6 +108,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -66,7 +66,8 @@ VPATH =
# Build targets # Build targets
all: .built all: .built
.PHONY: context .depend depend clean distclean .PHONY: context .depend depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -96,6 +97,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -86,7 +86,8 @@ STACKSIZE = 4096
VPATH = VPATH =
all: .built all: .built
.PHONY: clean depend distclean .PHONY: clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -134,6 +135,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -65,7 +65,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context clean depend distclean .PHONY: context clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -95,6 +96,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -117,7 +117,8 @@ VPATH = .:src
# Common build # Common build
all: .built tools all: .built tools
.PHONY: tools clean depend distclean .PHONY: tools clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -178,6 +179,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -45,6 +45,7 @@ all: nuttx
default: all default: all
.PHONY: clean .PHONY: clean
.PRECIOUS: $(BIN)
nuttx : $(NXINCNX) nuttx : $(NXINCNX)
@cp -a $(NXINCNX) nuttx @cp -a $(NXINCNX) nuttx

View File

@ -43,6 +43,7 @@ FILES = .config
all: nothing all: nothing
.PHONY: nothing context depend clean distclean .PHONY: nothing context depend clean distclean
.PRECIOUS: $(BIN)
nothing: nothing:

View File

@ -78,7 +78,8 @@ STACKSIZE = $(CONFIG_INTERPRETER_BAS_STACKSIZE)
# Build targets # Build targets
all: .built all: .built
.PHONY: context .depend depend clean distclean .PHONY: context .depend depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -115,7 +116,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -79,6 +79,7 @@ VPATH = src:$(FICL_SUBDIR)
all: .built all: .built
.PHONY: debug context depend clean distclean preconfig .PHONY: debug context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)

View File

@ -127,7 +127,8 @@ ROOTDEPPATH = --dep-path .
# Common build # Common build
all: .built all: .built
.PHONY: install context clean distclean .PHONY: install context clean distclean preconfig
.PRECIOUS: $(BIN)
$(MICROPYTHON_TARBALL): $(MICROPYTHON_TARBALL):
@echo "Downloading: $(MICROPYTHON_TARBALL)" @echo "Downloading: $(MICROPYTHON_TARBALL)"
@ -180,7 +181,7 @@ distclean: clean
$(call DELFILE, .downloaded) $(call DELFILE, .downloaded)
$(call DELFILE, $(MICROPYTHON_TARBALL)) $(call DELFILE, $(MICROPYTHON_TARBALL))
preconfig:
-include $(MICROPYTHON_SRCDIR)/mkrules.mk -include $(MICROPYTHON_SRCDIR)/mkrules.mk
-include Make.dep -include Make.dep
.PHONY: preconfig
preconfig:

View File

@ -73,7 +73,8 @@ STACKSIZE = $(CONFIG_INTERPRETER_MINIBASIC_STACKSIZE)
# Build targets # Build targets
all: .built all: .built
.PHONY: context .depend depend clean distclean .PHONY: context .depend depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -110,7 +111,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -82,7 +82,8 @@ endif
# Build targets # Build targets
all: .built all: .built
.PHONY: context .depend depend clean distclean .PHONY: context .depend depend clean distclean preconfig
.PRECIOUS: $(BIN)
ifeq ($(CONFIG_MODBUS),y) ifeq ($(CONFIG_MODBUS),y)
@ -119,8 +120,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
preconfig:
-include Make.dep -include Make.dep
.PHONY: preconfig
preconfig:

View File

@ -65,7 +65,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -95,6 +96,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -63,7 +63,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -93,6 +94,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -69,7 +69,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -99,6 +100,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -69,7 +69,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -99,6 +100,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -72,7 +72,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -102,6 +103,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -65,7 +65,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -95,6 +96,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -85,7 +85,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -115,6 +116,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -69,7 +69,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -99,6 +100,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -63,7 +63,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -93,6 +94,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -127,7 +127,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -157,6 +158,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -69,7 +69,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -99,6 +100,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -73,7 +73,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -103,6 +104,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -68,7 +68,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -98,6 +99,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -69,7 +69,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -99,6 +100,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -70,6 +70,7 @@ VPATH =
all: .built all: .built
.PHONY: context depend clean distclean preconfig .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)

View File

@ -69,7 +69,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -99,6 +100,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -71,7 +71,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -101,6 +102,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -110,7 +110,8 @@ PRIORITY = $(CONFIG_THTTPD_CGI_PRIORITY)
STACKSIZE = $(CONFIG_THTTPD_CGI_STACKSIZE) STACKSIZE = $(CONFIG_THTTPD_CGI_STACKSIZE)
all: $(SUBDIR_BIN) .built all: $(SUBDIR_BIN) .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -189,6 +190,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -69,7 +69,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -99,6 +100,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -76,7 +76,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -106,6 +107,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -70,7 +70,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -100,6 +101,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -159,7 +159,8 @@ VPATH =
# Build targets # Build targets
all: .built all: .built
.PHONY: context .depend depend clean distclean .PHONY: context .depend depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -189,7 +190,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -104,7 +104,8 @@ endif
# Build targets # Build targets
all: .built all: .built
.PHONY: context .depend depend clean distclean .PHONY: context .depend depend clean distclean preconfig
.PRECIOUS: $(BIN)
ifneq ($(ASRCS),) ifneq ($(ASRCS),)
# REVISIT: Backslash causes problems in $(AOBJS) target # REVISIT: Backslash causes problems in $(AOBJS) target
@ -160,7 +161,6 @@ distclean: clean
$(call DELFILE, .depend) $(call DELFILE, .depend)
$(Q) $(DIRUNLINK) $(PLATFORMDIR) $(Q) $(DIRUNLINK) $(PLATFORMDIR)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -37,6 +37,7 @@
all: all:
.PHONY: clean distclean .PHONY: clean distclean
.PRECIOUS: $(BIN)
# Clean Targets: # Clean Targets:

View File

@ -90,7 +90,8 @@ STACKSIZE2 = 2048
VPATH = VPATH =
all: .built all: .built
.PHONY: context clean depend distclean .PHONY: context clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -141,7 +142,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -65,7 +65,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -97,7 +98,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -90,7 +90,8 @@ STACKSIZE2 = 2048
VPATH = VPATH =
all: .built all: .built
.PHONY: context clean depend distclean .PHONY: context clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -141,7 +142,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -89,7 +89,8 @@ STACKSIZE = $(CONFIG_SYSTEM_CUTERM_STACKSIZE)
VPATH = VPATH =
all: .built all: .built
.PHONY: context clean depend distclean .PHONY: context clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -137,7 +138,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -89,7 +89,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: clean depend distclean .PHONY: clean depend distclean preconfig
.PRECIOUS: $(BIN)
$(RENEW_OBJS) $(RENEW_MAINOBJ): %$(OBJEXT): %.c $(RENEW_OBJS) $(RENEW_MAINOBJ): %$(OBJEXT): %.c
$(call COMPILE, $<, $@) $(call COMPILE, $<, $@)
@ -134,6 +135,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -90,7 +90,7 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: preconfig context depend clean distclean .PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)

View File

@ -86,7 +86,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -138,6 +139,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -112,7 +112,8 @@ HEX2MEM_PRIORITY = $(CONFIG_SYSTEM_HEX2MEM_PRIORITY)
# Build targets # Build targets
all: .built all: .built
.PHONY: context .depend depend clean distclean .PHONY: context .depend depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -178,7 +179,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -89,7 +89,8 @@ ROOTDEPPATH = --dep-path src
VPATH = src VPATH = src
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -141,6 +142,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -84,7 +84,8 @@ STACKSIZE = 2048
# Build targets # Build targets
all: .built all: .built
.PHONY: context .depend depend clean distclean .PHONY: context .depend depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -132,7 +133,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

View File

@ -90,7 +90,8 @@ ROOTDEPPATH = --dep-path .
VPATH = VPATH =
all: .built all: .built
.PHONY: context depend clean distclean .PHONY: context depend clean distclean preconfig
.PRECIOUS: $(BIN)
$(AOBJS): %$(OBJEXT): %.S $(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@) $(call ASSEMBLE, $<, $@)
@ -142,6 +143,6 @@ distclean: clean
$(call DELFILE, Make.dep) $(call DELFILE, Make.dep)
$(call DELFILE, .depend) $(call DELFILE, .depend)
-include Make.dep
.PHONY: preconfig
preconfig: preconfig:
-include Make.dep

Some files were not shown because too many files have changed in this diff Show More