diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..10d39c8 --- /dev/null +++ b/Makefile @@ -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/*