gcmm/Makefile
suloku 6db7f5444a Add dark mode
-WII/GC: added Dark mode theme
-Added more card fixes by Extrems in libogc2
-Use definitions to easily change font colors
GC
- Change background depending on fat device
Todo: add device selector to gamecube
2021-10-19 13:25:27 +02:00

36 lines
466 B
Makefile

default: all
all: light
light: wii gc
dark: wii-dark gc-dark
clean: gc-clean wii-clean
wii:
$(MAKE) -f Makefile.wii
wii-dark:
$(MAKE) -f Makefile.wii THEME=-DDARK_MODE
wii-clean:
$(MAKE) -f Makefile.wii clean
gc:
$(MAKE) -f Makefile.gc
gc-dark:
$(MAKE) -f Makefile.gc THEME=-DDARK_MODE
gc-clean:
$(MAKE) -f Makefile.gc clean
runwii:
$(MAKE) -f Makefile.wii run
rungc:
$(MAKE) -f Makefile.gc run
run: runwii