mirror of
https://github.com/BernardoGiordano/Checkpoint
synced 2025-02-17 15:58:24 +00:00
Add separate build targets for each platform to root Makefile (#179)
* Add separate build targets for each platform to root Makefile * Change target names in Makefile to match subdirectories
This commit is contained in:
parent
5915e95e1c
commit
ef8affc836
1 changed files with 9 additions and 1 deletions
10
Makefile
10
Makefile
|
@ -4,4 +4,12 @@ all:
|
|||
@for dir in $(SUBDIRS); do $(MAKE) -C $$dir; done
|
||||
|
||||
clean:
|
||||
@for dir in $(SUBDIRS); do $(MAKE) clean -C $$dir; done
|
||||
@for dir in $(SUBDIRS); do $(MAKE) clean -C $$dir; done
|
||||
|
||||
3ds:
|
||||
$(MAKE) -C 3ds
|
||||
|
||||
switch:
|
||||
$(MAKE) -C switch
|
||||
|
||||
.PHONY: $(SUBDIRS)
|
||||
|
|
Loading…
Add table
Reference in a new issue