-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Makefile.am
84 lines (71 loc) · 2.02 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
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = \
DNSCRYPT-V2-PROTOCOL.txt \
README-iOS.markdown \
README-PLUGINS.markdown \
README-WINDOWS.markdown \
README.markdown \
THANKS \
apparmor.profile.dnscrypt-proxy \
autogen.sh \
dnscrypt-proxy.conf \
dnscrypt-proxy.service.in \
dnscrypt-proxy.socket \
org.dnscrypt.osx.DNSCryptProxy.plist.in
SUBDIRS = \
dist-build \
man
SUBDIRS += \
contrib \
src \
test
dist_pkgdata_DATA = \
dnscrypt-resolvers.csv \
minisign.pub
doc_DATA = \
README.markdown \
COPYING \
DNSCRYPT-V2-PROTOCOL.txt \
dnscrypt-proxy.conf
if PLUGINS
doc_DATA += \
README-PLUGINS.markdown
endif
noinst_DATA = \
org.dnscrypt.osx.DNSCryptProxy.plist
if HAVE_SYSTEMD
noinst_DATA += \
dnscrypt-proxy.service
endif
dnscrypt-proxy.service: dnscrypt-proxy.service.in
$(SED) \
-e 's|[@]sbindir@|$(sbindir)|g' \
-e 's|[@]sysconfdir@|$(sysconfdir)|g' \
< $< > $@
org.dnscrypt.osx.DNSCryptProxy.plist: org.dnscrypt.osx.DNSCryptProxy.plist.in
$(SED) \
-e 's|[@]sbindir@|$(sbindir)|g' \
-e 's|[@]sysconfdir@|$(sysconfdir)|g' \
< $< > $@
CLEANFILES = \
dnscrypt-proxy.service \
dnscrypt-update-resolvers.sh \
org.dnscrypt.osx.DNSCryptProxy.plist
install-data-local:
@$(mkinstalldirs) $(DESTDIR)$(sysconfdir); \
if [ -f $(DESTDIR)$(sysconfdir)/dnscrypt-proxy.conf ]; then \
if cmp -s $(srcdir)/dnscrypt-proxy.conf $(docdir)/dnscrypt-proxy.conf; then \
echo "Configuration file unchanged"; \
else \
echo "The example configuration file [$(docdir)/dnscrypt-proxy.conf] has been updated."; \
echo "You may want to compare it with the one at [$(DESTDIR)$(sysconfdir)/dnscrypt-proxy.conf]."; \
fi; \
else \
$(INSTALL_DATA) $(srcdir)/dnscrypt-proxy.conf $(DESTDIR)$(sysconfdir)/dnscrypt-proxy.conf; \
fi
uninstall-local:
@if cmp -s $(srcdir)/dnscrypt-proxy.conf $(DESTDIR)$(sysconfdir)/dnscrypt-proxy.conf; then \
echo "$(DESTDIR)$(sysconfdir)/dnscrypt-proxy.conf has not changed and will be removed."; \
rm -f $(DESTDIR)$(sysconfdir)/dnscrypt-proxy.conf; \
rmdir $(DESTDIR)$(sysconfdir) 2> /dev/null ||:; \
fi