mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-27 05:34:15 +01:00
d31f40a84b
-updated the app booter to be compilable with the current devkitppc, that means if you compile wiiflow it will from now on also compile the app booter -fixed a little compiler issue for the new wiiflow loader
41 lines
1.5 KiB
Makefile
41 lines
1.5 KiB
Makefile
.PHONY = all clean run
|
|
CURDIR_TMP := $(CURDIR)
|
|
|
|
all:
|
|
@echo Make App Booter
|
|
@$(MAKE) --no-print-directory -C $(CURDIR_TMP)/resources/app_booter \
|
|
-f $(CURDIR_TMP)/resources/app_booter/Makefile
|
|
@mv -u $(CURDIR_TMP)/resources/app_booter/app_booter.bin \
|
|
$(CURDIR_TMP)/out/bins/app_booter.bin
|
|
|
|
@echo Make WiiFlow Loader
|
|
@$(MAKE) --no-print-directory -C $(CURDIR_TMP)/resources/extldr \
|
|
-f $(CURDIR_TMP)/resources/extldr/Makefile
|
|
|
|
@echo Make WiiFlow Booter
|
|
@$(MAKE) --no-print-directory -C $(CURDIR_TMP)/resources/wiiflow_game_booter \
|
|
-f $(CURDIR_TMP)/resources/wiiflow_game_booter/Makefile
|
|
@mv -u $(CURDIR_TMP)/resources/wiiflow_game_booter/booter.bin \
|
|
$(CURDIR_TMP)/out/bins/ext_booter.bin
|
|
|
|
@echo Make WiiFlow Main
|
|
@$(MAKE) --no-print-directory -C $(CURDIR_TMP) -f $(CURDIR_TMP)/Makefile.main
|
|
|
|
clean:
|
|
@echo Cleanup App Booter
|
|
@$(MAKE) --no-print-directory -C $(CURDIR_TMP)/resources/app_booter \
|
|
-f $(CURDIR_TMP)/resources/app_booter/Makefile clean
|
|
|
|
@echo Cleanup WiiFlow Loader
|
|
@$(MAKE) --no-print-directory -C $(CURDIR_TMP)/resources/extldr \
|
|
-f $(CURDIR_TMP)/resources/extldr/Makefile 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
|