diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-06-18 20:36:51 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-06-18 20:36:51 +0000 |
| commit | 55ca63d90abd9202b7713257b8b08ceae5d6c0dc (patch) | |
| tree | 1869dc2f0af251bf7bc616c4d6b9226c1de19589 | |
| parent | 6686851d2372bb2193febaf606de1b2976c568db (diff) | |
Minor makefile fixes - add phony targets, remove silence switch from the root makefile and add missing build modules to the ClassDriver VirtualSerial device demo.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2354 d5102386-fcda-11dd-9fdb-3debd5008f28
| -rw-r--r-- | Demos/Device/ClassDriver/VirtualSerial/makefile | 2 | ||||
| -rw-r--r-- | LUFA/makefile | 3 | ||||
| -rw-r--r-- | Maintenance/makefile | 3 | ||||
| -rw-r--r-- | makefile | 8 |
4 files changed, 12 insertions, 4 deletions
diff --git a/Demos/Device/ClassDriver/VirtualSerial/makefile b/Demos/Device/ClassDriver/VirtualSerial/makefile index 5c1cc1c3..ebf00290 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 ebe2b19b..21f0f578 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 3f542721..f1583817 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 @@ -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. |
