From 6fa8da4e561ee920f66ece42ce7e937a5399626d Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Mon, 18 Jun 2012 20:36:51 +0000 Subject: [PATCH] Minor makefile fixes - add phony targets, remove silence switch from the root makefile and add missing build modules to the ClassDriver VirtualSerial device demo. --- Demos/Device/ClassDriver/VirtualSerial/makefile | 2 ++ LUFA/makefile | 3 +++ Maintenance/makefile | 3 +++ makefile | 8 ++++---- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Demos/Device/ClassDriver/VirtualSerial/makefile b/Demos/Device/ClassDriver/VirtualSerial/makefile index 5c1cc1c348..ebf002909d 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 ebe2b19be8..21f0f578a0 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 3f542721a2..f158381789 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 d533f25ac0..898353c0da 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.