all: statics rankings players menus targetfiles := $(shell bin/target-ranking-files.sh config/dates.json) tmpfiles := $(patsubst %.html,http/%.html.tmp,$(targetfiles)) rankfiles := $(patsubst %.html,http/%.html.ed,$(targetfiles)) rankings: tables editions json tables: bin/build-rankings.sh config/dates.json http editions: $(rankfiles) $(rankfiles): python editions.py $(patsubst %.ed,%,$@) json: bin/generate-json.sh config/dates.json http players: bin/build-players.sh http statics: bin/generate-statics.sh config/static.json static http menus: bin/write-menus.sh config/static.json http group-tools: python static.py static/group-intro.html static/group-form-loading.html static/group-form.html > http/ranking-grupowy.html python static-menu.py config/static.json http/ranking-grupowy.html http minimize: $(tmpfiles) $(tmpfiles): python -m htmlmin.command $(patsubst %.tmp,%,$@) $@ mv $@ $(patsubst %.tmp,%,$@) deploy: bin/deploy.sh clean: find http -type f -name \*.html -delete