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
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/*