blob: d95b9b31e239e676fb1ebb7804d53009e1adb329 (
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
44
45
46
47
48
49
50
51
52
53
54
55
|
all: statics rankings players
targetfiles := $(shell bin/rankings-target-files.sh config/dates.json)
tmpfiles := $(patsubst %.html,http/%.html.tmp,$(targetfiles))
rankfiles := $(patsubst %.html,http/%.html.ed,$(targetfiles))
rankings: datafiles menus tables editions group-json
datafiles:
bin/datafiles-build.sh config/dates.json http/_data
bin/datafiles-htaccess.sh config/dates.json http/.htaccess
menus:
bin/menus-build.sh config/static.json http
tables:
bin/rankings-tables-build.sh config/dates.json http
editions: $(rankfiles)
$(rankfiles):
python scripts/rankings-editions.py $(patsubst %.ed,%,$@)
players: player-pages player-data
player-pages: menus
mkdir -p http/players
python scripts/players-prepare-template.py http/players http/players/.menu.html
player-data:
python scripts/players-compile.py config/dates.json http/players
statics:
python scripts/menus-compile.py config/static.json http http > http/.menu.html
bin/statics-generate.sh config/static.json static http
group-json:
bin/group-tools-json.sh config/dates.json http
group-tools:
python scripts/statics-compile.py static/group-intro.html static/group-form-loading.html static/group-form.html > http/ranking-grupowy.html
python scripts/menus-compile.py config/static.json http http > http/.menu.html
python scripts/menus-write.py http/ranking-grupowy.html http/.menu.html
minimize: $(tmpfiles)
$(tmpfiles):
python -m htmlmin.command $(patsubst %.tmp,%,$@) $@
mv $@ $(patsubst %.tmp,%,$@)
deploy:
bin/deploy.sh http
clean:
find http -type f -name \*.html -delete
|