This repository has been archived on 2019-08-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
hashcode2016/Makefile

15 lines
212 B
Makefile

all: 1o 2o 3o ../submission.zip
submission.zip:
rm submission.zip
git gc
zip $@ .git *.py -r
1o: 1
python reborn.py $<
2o: 2
python reborn.py $<
3o: 3
python reborn.py $<
.PHONY: submission.zip 1o 2o 3o