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

16 lines
212 B
Makefile
Raw Permalink Normal View History

2016-02-11 20:04:34 +00:00
all: 1o 2o 3o ../submission.zip
2016-02-13 11:55:50 +00:00
submission.zip:
rm submission.zip
git gc
2016-02-13 12:45:42 +00:00
zip $@ .git *.py -r
2016-02-11 20:04:34 +00:00
1o: 1
2016-02-16 22:48:59 +00:00
python reborn.py $<
2016-02-11 20:04:34 +00:00
2o: 2
2016-02-13 11:55:50 +00:00
python reborn.py $<
2016-02-11 20:04:34 +00:00
3o: 3
2016-02-16 22:48:59 +00:00
python reborn.py $<
2016-02-11 17:46:14 +00:00
2016-02-13 11:55:50 +00:00
.PHONY: submission.zip 1o 2o 3o