makefile to build all waterbox cores

This commit is contained in:
zeromus 2019-12-24 14:29:28 -05:00
parent 1dc33e074f
commit 6577c7b71a
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
# in case we have libs that need to build before cores, I split this up into two parts
LIBS = emulibc libco
CORES = gpgx libsnes pcfx vb ngp picodrive sameboy ss uzem
default: all
FORCE:
$(CORES) : FORCE $(LIBS)
make -C $@ $(MAKECMDGOALS)
$(LIBS) ::
make -C $@ $(MAKECMDGOALS)
all clean : $(CORES)