BizHawk/waterbox/waterbox-Makefile.all

18 lines
324 B
Plaintext
Raw Normal View History

2019-12-24 19:29:28 +00:00
# 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)