mirror of
https://github.com/DoctorWkt/pdp7-unix.git
synced 2026-01-27 04:32:25 +00:00
I've borrowed the V1 manuals from http://minnie.tuhs.org/cgi-bin/utree.pl?file=V1/man/man1 and changed them to reflect the PDP-7 utilities.
16 lines
288 B
Makefile
16 lines
288 B
Makefile
# Top level makefile to build the utilities etc,
|
|
AS= tools/as7
|
|
|
|
all: utilities
|
|
|
|
utilities:
|
|
$(AS) src/cmd/cat.s > bin/cat
|
|
$(AS) src/cmd/cp.s > bin/cp
|
|
$(AS) src/cmd/chmod.s > bin/chmod
|
|
$(AS) src/cmd/chown.s > bin/chown
|
|
$(AS) src/cmd/chrm.s > bin/chrm
|
|
rm -f n.out
|
|
|
|
clean:
|
|
rm -f bin/*
|