summaryrefslogtreecommitdiff
path: root/Makefile
blob: 94278a47496edbce9a51eac232a38bc83cb6bca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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: tables $(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