From 8f50e4d189bad9dbd180fd945881950769c3a989 Mon Sep 17 00:00:00 2001 From: jwansek Date: Sun, 24 Oct 2021 14:07:29 +0100 Subject: added the start of a type system --- code/simpleSableCCCalulator/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 code/simpleSableCCCalulator/Makefile (limited to 'code/simpleSableCCCalulator/Makefile') diff --git a/code/simpleSableCCCalulator/Makefile b/code/simpleSableCCCalulator/Makefile new file mode 100644 index 0000000..7c6962b --- /dev/null +++ b/code/simpleSableCCCalulator/Makefile @@ -0,0 +1,8 @@ +all: + javac sableCCCalculator/*.java + javac sableCCCalculator/types/*.java + + +clean: + rm -vf sableCCCalculator/*.class + rm -vf sableCCCalculator/types/*class -- cgit v1.2.3