From 51ab2cee19bd314b2de774d1a9c32ee9472c485f Mon Sep 17 00:00:00 2001 From: Warren Toomey Date: Wed, 2 Mar 2016 06:29:41 +1000 Subject: [PATCH] Added a top-level makefile so that we can build things quickly. --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile 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/*