-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
121 lines (107 loc) · 3.29 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# Makefile for DokuWiki Template Arctic
#
# @author Michael Klier <[email protected]>
DIST_VERSION=`cat VERSION`
DIST_NAME=template-arctic-$(DIST_VERSION)
DIST_DIR=../arctic
# {{{ DOCS
DOCS=$(DIST_DIR)/README \
$(DIST_DIR)/COPYING \
$(DIST_DIR)/VERSION
# }}}
# {{{ CSS
CSS=$(DIST_DIR)/arctic_design.css \
$(DIST_DIR)/arctic_layout.css \
$(DIST_DIR)/arctic_media.css \
$(DIST_DIR)/arctic_print.css \
$(DIST_DIR)/arctic_rtl.css\
$(DIST_DIR)/design.css \
$(DIST_DIR)/layout.css \
$(DIST_DIR)/media.css \
$(DIST_DIR)/print.css \
$(DIST_DIR)/rtl.css
# }}}
# {{{ STYLE_INI
STYLE_INI=$(DIST_DIR)/style.ini \
$(DIST_DIR)/style.ini.dist
# }}}
# {{{ PHP
PHP=$(DIST_DIR)/detail.php \
$(DIST_DIR)/main.php \
$(DIST_DIR)/mediamanager.php \
$(DIST_DIR)/tpl_functions.php
# }}}
# {{{ HTML
HTML=$(DIST_DIR)/footer.html \
$(DIST_DIR)/left_sidebar.html \
$(DIST_DIR)/right_sidebar.html
# }}}
# {{{ SCRIPT
SCRIPT=$(DIST_DIR)/script.js
# }}}
# {{{ IMAGES
IMAGES=$(DIST_DIR)/images/bullet.gif \
$(DIST_DIR)/images/button-apache.png \
$(DIST_DIR)/images/button-as.gif \
$(DIST_DIR)/images/button-bash.png \
$(DIST_DIR)/images/button-cc.gif \
$(DIST_DIR)/images/button-chimeric-de.png \
$(DIST_DIR)/images/button-css.png \
$(DIST_DIR)/images/button-debian.png \
$(DIST_DIR)/images/button-donate.gif \
$(DIST_DIR)/images/button-dw.png \
$(DIST_DIR)/images/button-email.png \
$(DIST_DIR)/images/button-firefox.png \
$(DIST_DIR)/images/button-gimp.png \
$(DIST_DIR)/images/button-gpg.gif \
$(DIST_DIR)/images/button-icq.gif \
$(DIST_DIR)/images/button-php.gif \
$(DIST_DIR)/images/button-rss.png \
$(DIST_DIR)/images/buttonshadow.png \
$(DIST_DIR)/images/button-vim.png \
$(DIST_DIR)/images/button-xhtml.png \
$(DIST_DIR)/images/closed.gif \
$(DIST_DIR)/images/favicon.ico \
$(DIST_DIR)/images/inputshadow.png \
$(DIST_DIR)/images/interwiki.png \
$(DIST_DIR)/images/link_icon.gif \
$(DIST_DIR)/images/mail_icon.gif \
$(DIST_DIR)/images/open.gif \
$(DIST_DIR)/images/tocdot2.gif \
$(DIST_DIR)/images/tool-admin.png \
$(DIST_DIR)/images/tool-backlink.png \
$(DIST_DIR)/images/tool-edit.png \
$(DIST_DIR)/images/tool-index.png \
$(DIST_DIR)/images/tool-login.png \
$(DIST_DIR)/images/tool-logout.png \
$(DIST_DIR)/images/tool-profile.png \
$(DIST_DIR)/images/tool-recent.png \
$(DIST_DIR)/images/tool-revisions.png \
$(DIST_DIR)/images/tool-source.png \
$(DIST_DIR)/images/tool-subscribe.png \
$(DIST_DIR)/images/tool-top.png \
$(DIST_DIR)/images/urlextern.png \
$(DIST_DIR)/images/windows.gif
# }}}
# {{{ LANG
LANG=$(DIST_DIR)/lang/de/settings.php \
$(DIST_DIR)/lang/cs/settings.php \
$(DIST_DIR)/lang/en/settings.php \
$(DIST_DIR)/lang/eo/settings.php \
$(DIST_DIR)/lang/es/settings.php \
$(DIST_DIR)/lang/fr/settings.php \
$(DIST_DIR)/lang/it/settings.php \
$(DIST_DIR)/lang/pl/settings.php \
$(DIST_DIR)/lang/pt/settings.php \
$(DIST_DIR)/lang/ru/settings.php
# }}}
# {{{ CONF
CONF=$(DIST_DIR)/conf/default.php \
$(DIST_DIR)/conf/metadata.php
# }}}
DIST_FILES= $(DOCS) $(CSS) $(HTML) $(SCRIPT) $(PHP) $(STYLE_INI) $(IMAGES) $(LANG) $(CONF)
dist:
tar czf $(DIST_NAME).tgz $(DIST_FILES)
clean:
rm $(DIST_NAME).tgz
# vim:ts=4:sw=4:fdm=marker: