-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
105 lines (85 loc) · 2.66 KB
/
Makefile
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#Neue Dateien hier hinzufügen!
generate: \
html/index.html \
html/action.html \
html/brief.html \
html/impressum.html \
html/datenschutz.html
test: generate
@python3 -m http.server -d html -b 127.0.0.1 8888
diff-neu:
@bash ./diff.sh neu
upload-neu:
@bash ./upload.sh neu
diff:
@bash ./diff.sh
upload:
@bash ./upload.sh
html/index.html: \
templates/header.html \
templates/title-large.html \
templates/forderungen-kurz.html \
templates/argumente-lang.html \
templates/.testimonials.html \
templates/.unterstuetzer.html \
templates/footer.html
($(addprefix cat , $(addsuffix ;, $^))) >$@
html/aufruf.html: \
templates/header.html \
templates/title-small.html \
templates/argumente-lang.html \
templates/forderungen-lang.html \
templates/.unterstuetzer.html \
templates/minusspace.html \
templates/.testimonials.html \
templates/footer.html
($(addprefix cat , $(addsuffix ;, $^))) >$@
html/impressum.html: \
templates/header.html \
templates/title-small.html \
templates/impressum.html \
templates/footer.html
($(addprefix cat , $(addsuffix ;, $^))) >$@
html/datenschutz.html: \
templates/header.html \
templates/title-small.html \
templates/datenschutz.html \
templates/footer.html
($(addprefix cat , $(addsuffix ;, $^))) >$@
html/brief.html: \
templates/header.html \
templates/title-small.html \
templates/brief.html \
templates/footer.html
($(addprefix cat , $(addsuffix ;, $^))) >$@
html/presse.html: \
templates/header.html \
templates/title-small.html \
templates/pressemitteilung.html \
templates/.unterstuetzer.html \
templates/footer.html
($(addprefix cat , $(addsuffix ;, $^))) >$@
html/pm.html: html/presse.html
cp html/presse.html html/pm.html
html/pressespiegel.html: \
templates/header.html \
templates/title-small.html \
templates/pressespiegel.html \
templates/.unterstuetzer.html \
templates/footer.html
($(addprefix cat , $(addsuffix ;, $^))) >$@
html/action.html: \
templates/header.html \
templates/title-small.html \
templates/.was-kann-ich-tun.html \
templates/.testimonials.html \
templates/minusspace.html \
templates/.unterstuetzer.html \
templates/footer.html
($(addprefix cat , $(addsuffix ;, $^))) >$@
templates/.was-kann-ich-tun.html: templates/was-kann-ich-tun.sh
$< >$@
templates/.testimonials.html: templates/testimonials.sh
templates/testimonials.sh >templates/.testimonials.html
templates/.unterstuetzer.html: templates/unterstuetzer.sh
templates/unterstuetzer.sh >templates/.unterstuetzer.html