mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-26 13:52:21 +00:00
Merge pull request #333 from nicoelayda/fix-makefile
Add component subdirectories to root Makefile's .PHONY
This commit is contained in:
commit
cd8621c632
1 changed files with 6 additions and 4 deletions
6
Makefile
6
Makefile
|
@ -6,7 +6,9 @@ ifneq (, $(strip $(shell git status --porcelain 2>/dev/null)))
|
||||||
AMSREV := $(AMSREV)-dirty
|
AMSREV := $(AMSREV)-dirty
|
||||||
endif
|
endif
|
||||||
|
|
||||||
all: fusee stratosphere exosphere thermosphere troposphere
|
COMPONENTS := fusee stratosphere exosphere thermosphere troposphere
|
||||||
|
|
||||||
|
all: $(COMPONENTS)
|
||||||
|
|
||||||
thermosphere:
|
thermosphere:
|
||||||
$(MAKE) -C thermosphere all
|
$(MAKE) -C thermosphere all
|
||||||
|
@ -65,4 +67,4 @@ dist: all
|
||||||
cp fusee/fusee-primary/fusee-primary.bin out/fusee-primary.bin
|
cp fusee/fusee-primary/fusee-primary.bin out/fusee-primary.bin
|
||||||
|
|
||||||
|
|
||||||
.PHONY: $(TOPTARGETS) fusee
|
.PHONY: $(TOPTARGETS) $(COMPONENTS)
|
||||||
|
|
Loading…
Reference in a new issue