forked from xyzzy/qrpicture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
58 lines (50 loc) · 2.19 KB
/
Makefile.am
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
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = \
LICENSE CHANGELOG.md INSTALL.md README.md \
.gitignore \
config.php \
qrpicture.sql \
www.qrpicture.com/index-old.php \
$(SITEFILES) $(SITEFILES_ASSETS) $(SITEFILES_IMAGES)
SITEFILES = \
www.qrpicture.com/favicon.ico \
www.qrpicture.com/index.php \
www.qrpicture.com/qrcode-mask-93x93.png \
www.qrpicture.com/qrscq-mask-93x93.png \
www.qrpicture.com/mootools-core-1.4.5.js \
www.qrpicture.com/mootools-more-1.4.0.1.js \
www.qrpicture.com/qrpicture.js \
www.qrpicture.com/robots.txt \
www.qrpicture.com/status.php \
www.qrpicture.com/submit.php \
www.qrpicture.com/worker.php
SITEFILES_ASSETS = \
www.qrpicture.com/assets/8S5rXB.png \
www.qrpicture.com/assets/index.html \
www.qrpicture.com/assets/outline0-97x97.png \
www.qrpicture.com/assets/outline1-97x97.png \
www.qrpicture.com/assets/outline2-97x97.png \
www.qrpicture.com/assets/outline3-97x97.png \
www.qrpicture.com/assets/outline4-97x97.png \
www.qrpicture.com/assets/outline5-97x97.png \
www.qrpicture.com/assets/p2G4MC.png \
www.qrpicture.com/assets/qrAwesome.anim.col.210x210.gif \
www.qrpicture.com/assets/qrSpiral.anim.col.210x210.gif
SITEFILES_IMAGES = \
www.qrpicture.com/images/index.html
bin_PROGRAMS = qrwork qrscq
qrwork_SOURCES = qrwork.cc
qrwork_LDFLAGS = -lgd
qrscq_SOURCES = qrscq.cc
qrscq_LDFLAGS = -lgd
install-data-hook:
install -d $(prefix) $(prefix)/assets
install -d -m 775 $(prefix)/images
cd $(top_srcdir); install $(SITEFILES) $(prefix)
cd $(top_srcdir); install $(SITEFILES_ASSETS) $(prefix)/assets
cd $(top_srcdir); install $(SITEFILES_IMAGES) $(prefix)/images
if test ! -e "$(prefix)/config.php"; then install "$(top_srcdir)/config.php" "$(prefix)/config.php"; fi
uninstall-local:
$(RM) $(prefix)/assets/{8S5rXB.png,index.html,outline0-97x97.png,outline1-97x97.png,outline2-97x97.png,outline3-97x97.png,outline4-97x97.png,outline5-97x97.png,p2G4MC.png,qrAwesome.anim.col.210x210.gif,qrSpiral.anim.col.210x210.gif}
$(RM) $(prefix)/images/index.html
$(RM) $(prefix)/{favicon.ico,index.php,mask-93x93.png,mootools-core-1.4.5.js,mootools-more-1.4.0.1.js,qrcode-mask-93x93.png,qrpicture.js,qrscq-mask-93x93.png,robots.txt,status.php,submit.php,worker.php,config.php}