mirror of
https://github.com/DoctorWkt/pdp7-unix.git
synced 2026-01-22 02:26:34 +00:00
15 lines
168 B
Makefile
15 lines
168 B
Makefile
|
|
all: buildit
|
|
|
|
buildit:
|
|
cd build && make all
|
|
|
|
run: buildit
|
|
cd build && make run
|
|
|
|
altrun: buildit
|
|
cd build && make alt && make altrun
|
|
|
|
clean:
|
|
cd build && make clean
|