From: Dean Camera Date: Mon, 18 Jun 2012 20:36:51 +0000 (+0000) Subject: Minor makefile fixes - add phony targets, remove silence switch from the root makefil... X-Git-Tag: LUFA-130303~167 X-Git-Url: http://git.linex4red.de/pub/USBasp.git/commitdiff_plain/6fa8da4e561ee920f66ece42ce7e937a5399626d?ds=inline Minor makefile fixes - add phony targets, remove silence switch from the root makefile and add missing build modules to the ClassDriver VirtualSerial device demo. --- diff --git a/Demos/Device/ClassDriver/VirtualSerial/makefile b/Demos/Device/ClassDriver/VirtualSerial/makefile index 5c1cc1c34..ebf002909 100644 --- a/Demos/Device/ClassDriver/VirtualSerial/makefile +++ b/Demos/Device/ClassDriver/VirtualSerial/makefile @@ -28,6 +28,8 @@ all: include $(LUFA_PATH)/Build/lufa.core.in include $(LUFA_PATH)/Build/lufa.sources.in include $(LUFA_PATH)/Build/lufa.build.in +include $(LUFA_PATH)/Build/lufa.cppcheck.in include $(LUFA_PATH)/Build/lufa.doxygen.in include $(LUFA_PATH)/Build/lufa.dfu.in include $(LUFA_PATH)/Build/lufa.avrdude.in +include $(LUFA_PATH)/Build/lufa.atprogram.in diff --git a/LUFA/makefile b/LUFA/makefile index ebe2b19be..21f0f578a 100644 --- a/LUFA/makefile +++ b/LUFA/makefile @@ -45,3 +45,6 @@ else include Build/lufa.sources.in include Build/lufa.doxygen.in endif + + +.PHONY: all export_tar version clean \ No newline at end of file diff --git a/Maintenance/makefile b/Maintenance/makefile index 3f542721a..f15838178 100644 --- a/Maintenance/makefile +++ b/Maintenance/makefile @@ -89,3 +89,6 @@ validate-branch: # Validate the working branch for general release, check for placeholder documentation then build and test everything validate-release: check-documentation-placeholders validate-branch + + +.PHONY: all upgrade-doxygen make-as4-projects check-documentation-placeholders validate-branch \ No newline at end of file diff --git a/makefile b/makefile index d533f25ac..898353c0d 100644 --- a/makefile +++ b/makefile @@ -17,9 +17,9 @@ all: %: @echo Executing \"make $@\" on all LUFA library elements. @echo - $(MAKE) -C LUFA $@ -s - $(MAKE) -C Demos $@ -s - $(MAKE) -C Projects $@ -s - $(MAKE) -C Bootloaders $@ -s + $(MAKE) -C LUFA $@ + $(MAKE) -C Demos $@ + $(MAKE) -C Projects $@ + $(MAKE) -C Bootloaders $@ @echo @echo LUFA \"make $@\" operation complete.