1
0
mirror of https://github.com/livingcomputermuseum/pdp7-unix.git synced 2026-05-02 22:33:11 +00:00
Files
livingcomputermuseum.pdp7-unix/Makefile
2016-03-05 13:44:48 -07:00

19 lines
379 B
Makefile

# Top level makefile to build the utilities etc,
AS= tools/as7
BIN=bin
all: utilities
utilities:
mkdir $(BIN)
$(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)/*
rmdir $(BIN)