forked from adrienverge/openfortivpn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
28 lines (20 loc) · 962 Bytes
/
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
# 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
openfortivpn_CFLAGS = -Wall --pedantic -std=gnu99
openfortivpn_CPPFLAGS = -DSYSCONFDIR=\"$(sysconfdir)\"
openfortivpn_CFLAGS += $(OPENSSL_CFLAGS)
openfortivpn_LDADD = $(OPENSSL_LIBS)
DISTCHECK_CONFIGURE_FLAGS = CFLAGS=-Werror
confdir=$(sysconfdir)/openfortivpn
conf_DATA = etc/openfortivpn/config
install-data-hook:
chmod 0600 $(DESTDIR)$(sysconfdir)/openfortivpn/config
dist_man_MANS = doc/openfortivpn.1
doc/openfortivpn.1: $(srcdir)/doc/openfortivpn.1.in
sed -e 's|[@]SYSCONFDIR[@]|$(sysconfdir)|g' $^ >$@
EXTRA_DIST = LICENSE README.md doc/openfortivpn.1.in $(conf_DATA)