forked from adrienverge/openfortivpn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
94 lines (70 loc) · 2.79 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
# http://mij.oltrelinux.com/devel/autoconf-automake/
bin_PROGRAMS = openfortivpn
openfortivpn_SOURCES = src/config.c src/config.h src/hdlc.c src/hdlc.h \
src/http.c src/http.h src/io.c src/io.h src/ipv4.c \
src/ipv4.h src/log.c src/log.h src/tunnel.c \
src/tunnel.h src/main.c src/ssl.h src/xml.c \
src/xml.h src/userinput.c src/userinput.h \
src/saml.c src/saml.h
src/xml.h src/userinput.c src/userinput.h
openfortivpn_CPPFLAGS = -DSYSCONFDIR=\"$(sysconfdir)\" \
-DPPP_PATH=\"@PPP_PATH@\" \
-DNETSTAT_PATH=\"@NETSTAT_PATH@\" \
-DRESOLVCONF_PATH=\"@RESOLVCONF_PATH@\" \
-DREVISION=\"@REVISION@\" \
$(OPENSSL_CFLAGS) $(LIBSYSTEMD_CFLAGS) \
$(LIBGTK_CFLAGS) $(LIBWEBKIT_CFLAGS)
openfortivpn_CFLAGS = -Wall -pedantic
openfortivpn_LDADD = $(OPENSSL_LIBS) $(LIBSYSTEMD_LIBS) $(LIBGTK_LIBS) $(LIBWEBKIT_LIBS)
PATHFILES =
CLEAN_LOCALS =
EXTRA_DIST = \
autogen.sh \
CHANGELOG.md \
LICENSE \
LICENSE.OpenSSL \
README.md
DISTCHECK_CONFIGURE_FLAGS = \
CFLAGS=-Werror \
--with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
# configuration file template
datadir=$(prefix)/share/@PACKAGE@
data_DATA=etc/openfortivpn/config.template
EXTRA_DIST += $(data_DATA)
# initial configuration file
confdir=$(sysconfdir)/@PACKAGE@
etc/openfortivpn/config: $(srcdir)/etc/openfortivpn/config.template
@$(MKDIR_P) etc/openfortivpn
$(AM_V_GEN)$(SED) -e '/^#/n;/^\s*$$/n;s/^/# /' $(srcdir)/etc/openfortivpn/config.template >$@
install-data-hook: etc/openfortivpn/config
if ! test -f $(DESTDIR)$(confdir)/config ; then \
$(MKDIR_P) $(DESTDIR)$(confdir) ; \
$(INSTALL) -m 600 etc/openfortivpn/config \
$(DESTDIR)$(confdir)/config ; \
fi
clean-local-config:
-rm -f $(top_builddir)/etc/openfortivpn/config
CLEAN_LOCALS += clean-local-config
# systemd service file
PATHFILES += lib/systemd/system/openfortivpn@.service
if HAVE_SYSTEMD
lib/systemd/system/openfortivpn@.service: $(srcdir)/lib/systemd/system/openfortivpn@.service.in
@$(MKDIR_P) lib/systemd/system
$(AM_V_GEN)$(SED) -e 's|[@]BINDIR[@]|$(bindir)|g;s|[@]SYSCONFDIR[@]|$(sysconfdir)|g' $(srcdir)/lib/systemd/system/openfortivpn@.service.in >$@
systemdsystemunit_DATA = lib/systemd/system/openfortivpn@.service
clean-local-systemd:
-rm -f $(top_builddir)/lib/systemd/system/openfortivpn@.service
CLEAN_LOCALS += clean-local-systemd
endif
# man page
PATHFILES += doc/openfortivpn.1
dist_man_MANS = doc/openfortivpn.1
doc/openfortivpn.1: $(srcdir)/doc/openfortivpn.1.in
@$(MKDIR_P) doc
$(AM_V_GEN)$(SED) -e 's|[@]SYSCONFDIR[@]|$(sysconfdir)|g;s|[@]DATADIR[@]|$(datadir)|g' $(srcdir)/doc/openfortivpn.1.in >$@
clean-local-man:
-rm -f $(top_builddir)/doc/openfortivpn.1
CLEAN_LOCALS += clean-local-man
EXTRA_DIST += $(PATHFILES:=.in)
all-local: etc/openfortivpn/config
clean-local: $(CLEAN_LOCALS)