1
0
mirror of https://github.com/livingcomputermuseum/pdp7-unix.git synced 2026-02-06 00:25:37 +00:00

Added a top-level makefile so that we can build things quickly.

This commit is contained in:
Warren Toomey
2016-03-02 06:29:41 +10:00
parent 02eeb59977
commit 51ab2cee19

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
# 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/*