makefile to build all waterbox cores
This commit is contained in:
parent
1dc33e074f
commit
6577c7b71a
|
@ -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)
|
||||
|
Loading…
Reference in New Issue