mirror of
https://github.com/DoctorWkt/pdp7-unix.git
synced 2026-01-20 17:59:15 +00:00
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 :-)
12 lines
114 B
Makefile
12 lines
114 B
Makefile
|
|
all: buildit
|
|
|
|
buildit:
|
|
cd build && make all
|
|
|
|
run: buildit
|
|
cd build && make run
|
|
|
|
clean:
|
|
cd build && make clean
|