1
0
mirror of https://github.com/DoctorWkt/pdp7-unix.git synced 2026-01-25 19:57:20 +00:00
Files
DoctorWkt.pdp7-unix/Makefile
2016-03-03 13:42:22 +10:00

16 lines
322 B
Makefile

# Top level makefile to build the utilities etc,
AS= tools/as7
all: utilities
utilities:
$(AS) -o bin/cat src/cmd/cat.s
$(AS) -o bin/cp src/cmd/cp.s
$(AS) -o bin/chmod src/cmd/chmod.s
$(AS) -o bin/chown src/cmd/chown.s
$(AS) -o bin/chrm src/cmd/chrm.s
$(AS) -o bin/ls src/other/wktls.s
clean:
rm -f bin/*