WiiFlow_Lite/Makefile
fix94.1 e3b38c435c -removed precompiled external booter dol, it will now be auto
compiled and moved by using the regular make/make -j
2012-09-29 19:05:11 +00:00

20 lines
816 B
Makefile

.PHONY = all clean run
CURDIR_TMP := $(CURDIR)
all:
@echo Make WiiFlow Booter
@$(MAKE) --no-print-directory -C $(CURDIR_TMP)/resources/wiiflow_game_booter \
-f $(CURDIR_TMP)/resources/wiiflow_game_booter/Makefile
@mv -f $(CURDIR_TMP)/resources/wiiflow_game_booter/boot.dol \
$(CURDIR_TMP)/data/wiiflow_game_booter.dol
@echo Make WiiFlow Main
@$(MAKE) --no-print-directory -C $(CURDIR_TMP) -f $(CURDIR_TMP)/Makefile.main
clean:
@echo Cleanup WiiFlow Booter
@$(MAKE) --no-print-directory -C $(CURDIR_TMP)/resources/wiiflow_game_booter \
-f $(CURDIR_TMP)/resources/wiiflow_game_booter/Makefile clean
@echo Cleanup WiiFlow Main
@$(MAKE) --no-print-directory -C $(CURDIR_TMP) -f $(CURDIR_TMP)/Makefile.main clean
run:
@$(MAKE) --no-print-directory -C $(CURDIR_TMP) -f $(CURDIR_TMP)/Makefile.main run