1
0
mirror of https://github.com/DoctorWkt/pdp7-unix.git synced 2026-01-20 17:59:15 +00:00
Warren Toomey acf853d1a3 I changed the Makefiles so that I could make run without rebuilding
everything. This is mainly because I often boot the system several times
in a row when debugging, and I didn't want to have to build everything
just to reboot the system :-)
2016-03-20 20:55:43 +10:00

12 lines
114 B
Makefile

all: buildit
buildit:
cd build && make all
run: buildit
cd build && make run
clean:
cd build && make clean