7 lines
187 B
Makefile
7 lines
187 B
Makefile
@part PART INPUT_FILE="inputs/puzzle.txt":
|
|
ocamlopt -o part_{{PART}} common.ml part_{{PART}}.ml
|
|
./part_{{PART}} {{INPUT_FILE}}
|
|
|
|
clean:
|
|
rm -f *.cmx *.cmi *.o part_one part_two
|