From: Dave Murphy Date: Wed, 18 Feb 2015 00:34:31 +0000 (+0000) Subject: use variable to recurse make X-Git-Tag: v0.5.0~38 X-Git-Url: https://chaos.moe/g/?a=commitdiff_plain;h=71788b4a668d3da173654a65391319c1b7693150;p=corbenik%2Fctrulib.git use variable to recurse make --- diff --git a/examples/app_launch/Makefile b/examples/app_launch/Makefile index c21562a..bb6b45d 100644 --- a/examples/app_launch/Makefile +++ b/examples/app_launch/Makefile @@ -120,7 +120,7 @@ all: $(BUILD) $(BUILD): @[ -d $@ ] || mkdir -p $@ - @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile + @+$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile #--------------------------------------------------------------------------------- clean: diff --git a/examples/audio/mic/Makefile b/examples/audio/mic/Makefile index c21562a..bb6b45d 100644 --- a/examples/audio/mic/Makefile +++ b/examples/audio/mic/Makefile @@ -120,7 +120,7 @@ all: $(BUILD) $(BUILD): @[ -d $@ ] || mkdir -p $@ - @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile + @+$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile #--------------------------------------------------------------------------------- clean: diff --git a/examples/get_system_language/Makefile b/examples/get_system_language/Makefile index 576126e..ff1c11a 100644 --- a/examples/get_system_language/Makefile +++ b/examples/get_system_language/Makefile @@ -124,7 +124,7 @@ all: $(BUILD) $(BUILD): @[ -d $@ ] || mkdir -p $@ - @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile + @+$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile #--------------------------------------------------------------------------------- clean: diff --git a/examples/gpu/Makefile b/examples/gpu/Makefile index c21562a..076fc4b 100644 --- a/examples/gpu/Makefile +++ b/examples/gpu/Makefile @@ -120,7 +120,7 @@ all: $(BUILD) $(BUILD): @[ -d $@ ] || mkdir -p $@ - @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile + @+$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile #--------------------------------------------------------------------------------- clean: @@ -153,7 +153,7 @@ $(OUTPUT).elf : $(OFILES) # WARNING: This is not the right way to do this! TODO: Do it right! #--------------------------------------------------------------------------------- -%.vsh.o : %.vsh +%_vsh.h %.vsh.o : %.vsh #--------------------------------------------------------------------------------- @echo $(notdir $<) @python $(AEMSTRO)/aemstro_as.py $< ../$(notdir $<).shbin diff --git a/examples/graphics/printing/hello-world/Makefile b/examples/graphics/printing/hello-world/Makefile index c21562a..bb6b45d 100755 --- a/examples/graphics/printing/hello-world/Makefile +++ b/examples/graphics/printing/hello-world/Makefile @@ -120,7 +120,7 @@ all: $(BUILD) $(BUILD): @[ -d $@ ] || mkdir -p $@ - @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile + @+$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile #--------------------------------------------------------------------------------- clean: diff --git a/examples/http/Makefile b/examples/http/Makefile index c21562a..bb6b45d 100644 --- a/examples/http/Makefile +++ b/examples/http/Makefile @@ -120,7 +120,7 @@ all: $(BUILD) $(BUILD): @[ -d $@ ] || mkdir -p $@ - @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile + @+$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile #--------------------------------------------------------------------------------- clean: diff --git a/examples/libapplet_launch/Makefile b/examples/libapplet_launch/Makefile index c21562a..bb6b45d 100644 --- a/examples/libapplet_launch/Makefile +++ b/examples/libapplet_launch/Makefile @@ -120,7 +120,7 @@ all: $(BUILD) $(BUILD): @[ -d $@ ] || mkdir -p $@ - @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile + @+$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile #--------------------------------------------------------------------------------- clean: diff --git a/examples/mvd/Makefile b/examples/mvd/Makefile index c21562a..bb6b45d 100644 --- a/examples/mvd/Makefile +++ b/examples/mvd/Makefile @@ -120,7 +120,7 @@ all: $(BUILD) $(BUILD): @[ -d $@ ] || mkdir -p $@ - @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile + @+$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile #--------------------------------------------------------------------------------- clean: diff --git a/examples/qtm/Makefile b/examples/qtm/Makefile index 576126e..ff1c11a 100644 --- a/examples/qtm/Makefile +++ b/examples/qtm/Makefile @@ -124,7 +124,7 @@ all: $(BUILD) $(BUILD): @[ -d $@ ] || mkdir -p $@ - @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile + @+$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile #--------------------------------------------------------------------------------- clean: diff --git a/examples/sdmc/Makefile b/examples/sdmc/Makefile index c21562a..bb6b45d 100644 --- a/examples/sdmc/Makefile +++ b/examples/sdmc/Makefile @@ -120,7 +120,7 @@ all: $(BUILD) $(BUILD): @[ -d $@ ] || mkdir -p $@ - @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile + @+$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile #--------------------------------------------------------------------------------- clean: diff --git a/examples/templates/application/Makefile b/examples/templates/application/Makefile index 576126e..ff1c11a 100644 --- a/examples/templates/application/Makefile +++ b/examples/templates/application/Makefile @@ -124,7 +124,7 @@ all: $(BUILD) $(BUILD): @[ -d $@ ] || mkdir -p $@ - @make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile + @+$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile #--------------------------------------------------------------------------------- clean: diff --git a/examples/templates/library/Makefile b/examples/templates/library/Makefile index 887909f..85fad4b 100644 --- a/examples/templates/library/Makefile +++ b/examples/templates/library/Makefile @@ -90,7 +90,7 @@ lib: $(BUILD): lib @[ -d $@ ] || mkdir -p $@ - @$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile + @+$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile #--------------------------------------------------------------------------------- clean: