COMMON/Makefile
2018-08-07 06:38:40 -04:00

13 lines
264 B
Makefile

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