-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMakefile.am
133 lines (123 loc) · 3.42 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
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
122
123
124
125
126
127
128
129
130
131
132
133
## Process this file with automake to produce Makefile.in
#----------------------------------------------------------------------
# Handle file replacements. Files can contain configure variables, and
# will be processed by this sed script. Process files via the
# Makefile, rather than configure, so that the user can make
# adjustments to paths at Make time. This is the preferred method, see
# GNU docs for more info.
# ----------------------------------------------------------------------
edit = sed \
-e 's|@bindir[@]|$(bindir)|g' \
-e 's|@pkgdatadir[@]|$(pkgdatadir)|g' \
-e 's|@pkgsysconfdir[@]|$(pkgsysconfdir)|g' \
-e 's|@prefix[@]|$(prefix)|g'
INSTALL.centos etc/apache2.conf etc/httpd-centos7.conf: Makefile
rm -f $@ $@.tmp
srcdir=''; \
test -f ./$@.in || srcdir=$(srcdir)/; \
$(edit) $${srcdir}$@.in >$@.tmp
chmod a-w $@.tmp
mv $@.tmp $@
etc/apache2.conf: $(srcdir)/etc/apache2.conf.in
etc/httpd-centos7.conf: $(srcdir)/etc/httpd-centos7.conf.in
INSTALL.centos: $(srcdir)/INSTALL.centos.in
# Distribute these but do not install them
EXTRA_DIST = \
INSTALL.centos.in \
debian \
xml-signer.spec \
etc/apache2.conf.in \
etc/httpd-centos7.conf.in
CLEANFILES = \
etc/apache2.conf \
etc/httpd-centos7.conf \
INSTALL.centos
nobase_pkgdata_DATA = \
etc/apache2.conf \
etc/httpd-centos7.conf
# Put all the files for the web server under 'www' for easy apache
# configuration.
wwwdatadir = $(pkgdatadir)/www
nobase_dist_wwwdata_DATA = \
emulab.html \
emulab.js \
error.js \
geni-auth.js \
index.html \
index.php \
lib/amelia.min.css \
lib/bootstrap/css/bootstrap-theme.css \
lib/bootstrap/css/bootstrap-theme.css.map \
lib/bootstrap/css/bootstrap-theme.min.css \
lib/bootstrap/css/bootstrap.css \
lib/bootstrap/css/bootstrap.css.map \
lib/bootstrap/css/bootstrap.min.css \
lib/bootstrap/fonts/glyphicons-halflings-regular.eot \
lib/bootstrap/fonts/glyphicons-halflings-regular.svg \
lib/bootstrap/fonts/glyphicons-halflings-regular.ttf \
lib/bootstrap/fonts/glyphicons-halflings-regular.woff \
lib/bootstrap/js/bootstrap.js \
lib/bootstrap/js/bootstrap.min.js \
lib/cyborg.min.css \
lib/forge/aes.js \
lib/forge/aesCipherSuites.js \
lib/forge/asn1.js \
lib/forge/debug.js \
lib/forge/des.js \
lib/forge/forge.js \
lib/forge/form.js \
lib/forge/hmac.js \
lib/forge/http.js \
lib/forge/jsbn.js \
lib/forge/log.js \
lib/forge/md.js \
lib/forge/md5.js \
lib/forge/mgf.js \
lib/forge/mgf1.js \
lib/forge/oids.js \
lib/forge/pbe.js \
lib/forge/pbkdf2.js \
lib/forge/pem.js \
lib/forge/pkcs1.js \
lib/forge/pkcs12.js \
lib/forge/pkcs7.js \
lib/forge/pkcs7asn1.js \
lib/forge/pki.js \
lib/forge/prime.worker.js \
lib/forge/prng.js \
lib/forge/pss.js \
lib/forge/random.js \
lib/forge/rc2.js \
lib/forge/rsa.js \
lib/forge/sha1.js \
lib/forge/sha256.js \
lib/forge/socket.js \
lib/forge/task.js \
lib/forge/tls.js \
lib/forge/tlssocket.js \
lib/forge/util.js \
lib/forge/x509.js \
lib/forge/xhr.js \
lib/jquery-1.8.2.min.js \
lib/underscore-min.js \
lib/xml-crypto/enveloped-signature.js \
lib/xml-crypto/exclusive-canonicalization.js \
lib/xml-crypto/signed-xml.js \
lib/xml-crypto/utils.js \
lib/xml-crypto/xpath.js \
lib/xmldom/dom-parser.js \
lib/xmldom/dom.js \
lib/xmldom/sax.js \
require-jquery.js \
signer.css \
template/authorize.html \
template/credential.txt \
template/no-key.html \
text.js \
tool.html \
xml-signer.js
dist_doc_DATA = \
AUTHORS \
README.md
doc_DATA = \
INSTALL.centos