This repository has been archived on 2019-08-09. You can view files and clone it, but cannot push or open issues or pull requests.
hashcode2016/Makefile

14 lines
181 B
Makefile
Raw Normal View History

2016-02-11 21:04:34 +01:00
all: 1o 2o 3o ../submission.zip
2016-02-13 12:55:50 +01:00
submission.zip:
2016-02-13 13:45:42 +01:00
zip $@ .git *.py -r
2016-02-11 21:04:34 +01:00
1o: 1
python main.py $<
2o: 2
2016-02-13 12:55:50 +01:00
python reborn.py $<
2016-02-11 21:04:34 +01:00
3o: 3
python main.py $<
2016-02-11 18:46:14 +01:00
2016-02-13 12:55:50 +01:00
.PHONY: submission.zip 1o 2o 3o