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
Geoffrey Frogeye 3041f78531 git gc before making submission
It DOES matter on this very slow connection.
2016-02-13 16:50:39 +01:00

15 lines
189 B
Makefile

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