From 0a76e13deb6b2bd8e34c1cf26254041f873552e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Wed, 26 Jan 2022 22:06:21 +0100 Subject: add makefile --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..74895e8 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +.PHONY: all +all: lab1upg2.out lab1upg3.out lab1ucode.out + +lab1upg2.out: lab1asm.py lab1upg2.in + python3.10 lab1asm.py < lab1upg2.in > lab1upg2.out + +lab1upg3.out: lab1asm.py lab1upg3.in + python3.10 lab1asm.py < lab1upg3.in > lab1upg3.out + +lab1ucode.out: lab1ucode.py lab1ucode.in + python3.10 lab1ucode.py < lab1ucode.in > lab1ucode.out -- cgit v1.2.1