diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-07-10 18:30:41 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-07-10 18:30:41 +0000 |
| commit | 245a0a81abcd4706fef7d034eb0bb69af79ec595 (patch) | |
| tree | efc5238c97e02270f002f474c64503a9571af98d /Demos/Device/LowLevel | |
| parent | 0e230bac5d3e1f0eebbd7711e222d2db499a8271 (diff) | |
Slightly better method of recursive make - use proper make dependencies to allow for parallel builds.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2391 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Device/LowLevel')
| -rw-r--r-- | Demos/Device/LowLevel/makefile | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/Demos/Device/LowLevel/makefile b/Demos/Device/LowLevel/makefile index ad880009..3a5615e0 100644 --- a/Demos/Device/LowLevel/makefile +++ b/Demos/Device/LowLevel/makefile @@ -22,10 +22,23 @@ ifeq ($(MAKELEVEL), 10) $(error EMERGENCY ABORT: INFINITE RECURSION DETECTED) endif -all: +# If building without a per-project object directory, we can't build in parallel ifeq ($(OBJDIR),) - @$(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -C $(PROJECT) clean all;) + .NOTPARALLEL: + + # Ensure projects are pre-cleaned if the target is the default or "all" + ifeq ($(MAKECMDGOALS),) + MAKECMDGOALS := clean all + endif + ifneq ($(findstring all, $(MAKECMDGOALS)),) + MAKECMDGOALS := clean $(MAKECMDGOALS) + endif endif -%: - @$(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -C $(PROJECT) $@;) +%: $(PROJECT_DIRECTORIES) + @echo . > /dev/null + +$(PROJECT_DIRECTORIES): + @$(MAKE) -C $@ $(MAKECMDGOALS) + +.PHONY: $(PROJECT_DIRECTORIES) |
