-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (21 loc) · 689 Bytes
/
Makefile
File metadata and controls
30 lines (21 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
SOLVER=example
ifdef DEBUG
DEBUGSTR = --debug
else
DEBUGSTR =
endif
all: A B C D E F
zip:
zip -r output/submission.zip . --exclude @.exclude.lst
A: zip
python3 main.py input/a.txt --output output/a.txt --solver $(SOLVER) $(DEBUGSTR)
B: zip
python3 main.py input/b.txt --output output/b.txt --solver $(SOLVER) $(DEBUGSTR)
C: zip
python3 main.py input/c.txt --output output/c.txt --solver $(SOLVER) $(DEBUGSTR)
D: zip
python3 main.py input/d.txt --output output/d.txt --solver $(SOLVER) $(DEBUGSTR)
E: zip
python3 main.py input/e.txt --output output/e.txt --solver $(SOLVER) $(DEBUGSTR)
F: zip
python3 main.py input/f.txt --output output/f.txt --solver $(SOLVER) $(DEBUGSTR)