COMMON/Makefile
2018-08-07 07:03:21 -04:00

13 lines
254 B
Makefile

all:
cd xa-pre-process ; make ; cd ..
cd common ; make ; cd ..
cd emulator ; make ; cd ..
run:
./emulator/emulator < common/system.obj
clean:
cd xa-pre-process ; make clean ; cd ..
cd common ; make clean ; cd ..
cd emulator ; make clean ; cd ..