-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.am
113 lines (102 loc) · 3.08 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
## Process this file with automake to produce Makefile.in
SUBDIRS = doc
#----------------------------------------------------------------------
# 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'
apache2.conf apache-2.4.conf lib/php/ar_constants.php lib/php/email_utils.php: Makefile
rm -f $@ [email protected]
srcdir=''; \
test -f ./[email protected] || srcdir=$(srcdir)/; \
$(edit) $${srcdir}[email protected] >[email protected]
chmod a-w [email protected]
mv [email protected] $@
apache2.conf: $(srcdir)/apache2.conf.in
apache-2.4.conf: $(srcdir)/apache-2.4.conf.in
lib/php/ar_constants.php: $(srcdir)/lib/php/ar_constants.php.in
lib/php/email_utils.php: $(srcdir)/lib/php/email_utils.php.in
EXTRA_DIST = \
apache2.conf.in \
apache-2.4.conf.in \
lib/php/ar_constants.php.in \
lib/php/email_utils.php.in
CLEANFILES = \
apache2.conf \
apache-2.4.conf \
lib/php/ar_constants.php \
lib/php/email_utils.php
nobase_dist_pkgdata_DATA = \
apache2.conf \
apache-2.4.conf \
db/postgresql/schema.sql \
db/postgresql/update-1.sql \
db/postgresql/update-2.sql \
db/postgresql/update-3.sql \
db/postgresql/update-4.sql \
etc/confirm-email.txt \
etc/leads-email.txt \
etc/notification-email.txt \
etc/settings.php \
etc/user-email.txt \
etc/tutorial-email.txt \
ldap/backend.gpolab.bbn.com.ldif \
ldap/eduperson.ldif \
ldap/frontend.gpolab.bbn.com.ldif \
ldap/users.gpolab.bbn.com.ldif \
lib/php/ar_constants.php \
lib/php/db_utils.php \
lib/php/email_utils.php \
lib/php/header.php \
lib/php/ldap_utils.php \
lib/php/log_actions.php \
lib/php/response_format.php \
lib/php/ssha.php \
protected/acct_actions.php \
protected/action_log.php \
protected/add_note.php \
protected/approve.php \
protected/cards.js \
protected/display_accounts.php \
protected/display_requests.php \
protected/fix_accounts.html \
protected/fix_actions.php \
protected/geni-ar.css \
protected/index.html \
protected/ldap.php \
protected/request_actions.php \
protected/send_email.php \
protected/tutorial_requests.php \
protected/tutorial_actions.php \
protected/tutorial_confirmation.php \
protected/verifyuser.php \
protected/whitelist.php \
shibboleth/attribute-filter-geni.xml \
shibboleth/attribute-resolver-geni.xml \
www/confirmemail.php \
www/handlerequest.php \
www/geni.png \
www/favicon.ico \
www/kmtool.css \
www/newpasswd.php \
www/pwchange.php \
www/request.html \
www/reset.html \
www/usernamerecover.html \
www/usernamerecover.php
dist_bin_SCRIPTS = \
bin/geni-add-log \
bin/geni-convert-logs \
bin/geni-ar-expired-accounts
dist_man_MANS = \
man/geni-ar-expired-accounts.1
pkgsysconfdir = $(sysconfdir)/$(PACKAGE)
install-data-local:
$(MKDIR_P) $(DESTDIR)$(pkgsysconfdir)