mirror of
https://github.com/DoctorWkt/pdp7-unix.git
synced 2026-01-13 15:27:39 +00:00
17 lines
204 B
Makefile
17 lines
204 B
Makefile
|
|
include build/os.mk
|
|
|
|
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
|