mirror of
https://github.com/RocketRobz/SuperAllStarPhotoStudio.git
synced 2025-06-18 09:05:35 -04:00
18 lines
349 B
Makefile
18 lines
349 B
Makefile
#---------------------------------------------------------------------------------
|
|
# Goals for Build
|
|
#---------------------------------------------------------------------------------
|
|
.PHONY: all nds 3ds
|
|
|
|
all: nds 3ds
|
|
|
|
nds:
|
|
@$(MAKE) -C nds
|
|
|
|
3ds:
|
|
@$(MAKE) -C 3ds
|
|
|
|
clean:
|
|
@echo clean build directories
|
|
@$(MAKE) -C nds clean
|
|
@$(MAKE) -C 3ds clean
|