diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
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 |
