]> git.ipfire.org Git - thirdparty/openvpn.git/blob - Makefile.am
First attempt at automatic proxy detection,
[thirdparty/openvpn.git] / Makefile.am
1 #
2 # OpenVPN -- An application to securely tunnel IP networks
3 # over a single UDP port, with support for SSL/TLS-based
4 # session authentication and key exchange,
5 # packet encryption, packet authentication, and
6 # packet compression.
7 #
8 # Copyright (C) 2002-2005 OpenVPN Solutions LLC <info@openvpn.net>
9 #
10 # This program is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License version 2
12 # as published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program (see the file COPYING included with this
21 # distribution); if not, write to the Free Software Foundation, Inc.,
22 # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #
24
25 # This option prevents autoreconf from overriding our COPYING and
26 # INSTALL targets:
27 AUTOMAKE_OPTIONS = foreign
28
29 sbin_PROGRAMS = openvpn
30
31 nodist_openvpn_SOURCES = config.h
32
33 TESTS = t_lpback.sh t_cltsrv.sh
34 dist_noinst_SCRIPTS = $(TESTS)
35
36 .PHONY: plugin
37
38 openvpn_SOURCES = \
39 base64.c base64.h \
40 basic.h \
41 buffer.c buffer.h \
42 circ_list.h \
43 common.h \
44 crypto.c crypto.h \
45 errlevel.h \
46 error.c error.h \
47 event.c event.h \
48 fdmisc.c fdmisc.h \
49 forward.c forward.h forward-inline.h \
50 fragment.c fragment.h \
51 gremlin.c gremlin.h \
52 helper.c helper.h \
53 init.c init.h \
54 integer.h \
55 interval.c interval.h \
56 list.c list.h \
57 lzo.c lzo.h \
58 manage.c manage.h \
59 mbuf.c mbuf.h \
60 memdbg.h \
61 misc.c misc.h \
62 mroute.c mroute.h \
63 mss.c mss.h \
64 mtcp.c mtcp.h \
65 mtu.c mtu.h \
66 mudp.c mudp.h \
67 multi.c multi.h \
68 ntlm.c ntlm.h \
69 occ.c occ.h occ-inline.h \
70 pkcs11.c pkcs11.h pkcs11-helper.c pkcs11-helper.h pkcs11-helper-config.h cryptoki.h \
71 openvpn.c openvpn.h \
72 openvpn-plugin.h \
73 options.c options.h \
74 otime.c otime.h \
75 packet_id.c packet_id.h \
76 perf.c perf.h \
77 ping.c ping.h ping-inline.h \
78 plugin.c plugin.h \
79 pool.c pool.h \
80 proto.c proto.h \
81 proxy.c proxy.h \
82 push.c push.h \
83 reliable.c reliable.h \
84 route.c route.h \
85 schedule.c schedule.h \
86 session_id.c session_id.h \
87 shaper.c shaper.h \
88 sig.c sig.h \
89 socket.c socket.h \
90 socks.c socks.h \
91 ssl.c ssl.h \
92 status.c status.h \
93 syshead.h \
94 thread.c thread.h \
95 tun.c tun.h
96
97 LDADD = @LIBOBJS@
98
99 man_MANS = openvpn.8
100
101 EXTRA_DIST = \
102 doclean \
103 $(man_MANS) \
104 COPYRIGHT.GPL \
105 PORTS \
106 openvpn.spec \
107 easy-rsa \
108 sample-config-files \
109 sample-keys \
110 sample-scripts \
111 gentoo \
112 suse \
113 openvpn.spec.in \
114 config-win32.h \
115 win32.h \
116 win32.c \
117 cryptoapi.h \
118 cryptoapi.c \
119 makefile.w32 \
120 makefile.w32-vc \
121 INSTALL-win32.txt \
122 tap-win32 \
123 install-win32 \
124 service-win32 \
125 contrib \
126 debug \
127 plugin \
128 management \
129 pkcs11-headers \
130 cryptoki-win32.h \
131 ieproxy.c ieproxy.h
132
133 dist-hook:
134 cd $(distdir) && for i in $(EXTRA_DIST) ; do find $$i -name .svn -type d -prune -exec rm -rf '{}' ';' ; rm -f `find $$i -type f | grep -E '(^|\/)\.?\#|\~$$|\.s?o$$'` ; done