mirror of
https://github.com/DoctorWkt/pdp7-unix.git
synced 2026-01-21 18:16:32 +00:00
12 lines
156 B
Makefile
12 lines
156 B
Makefile
# Top level makefile to build the utilities etc,
|
|
AS= tools/as7
|
|
|
|
all: utilities
|
|
|
|
utilities:
|
|
$(AS) src/cmd/cat.s > bin/cat
|
|
rm -f n.out
|
|
|
|
clean:
|
|
rm -f bin/*
|