Makefile.am
6fbf66fa
 #
 #  OpenVPN -- An application to securely tunnel IP networks
 #             over a single UDP port, with support for SSL/TLS-based
 #             session authentication and key exchange,
 #             packet encryption, packet authentication, and
 #             packet compression.
 #
564a2109
 #  Copyright (C) 2002-2010 OpenVPN Technologies, Inc. <sales@openvpn.net>
f27bf509
 #  Copyright (C) 2010      David Sommerseth <dazo@users.sourceforge.net>
6fbf66fa
 #
 #  This program is free software; you can redistribute it and/or modify
 #  it under the terms of the GNU General Public License version 2
 #  as published by the Free Software Foundation.
 #
 #  This program is distributed in the hope that it will be useful,
 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 #  GNU General Public License for more details.
 #
 #  You should have received a copy of the GNU General Public License
 #  along with this program (see the file COPYING included with this
 #  distribution); if not, write to the Free Software Foundation, Inc.,
 #  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 #
 
1bda73a7
 LDADD = @LIBOBJS@
 .PHONY: plugin
 
6fbf66fa
 # This option prevents autoreconf from overriding our COPYING and
 # INSTALL targets:
 AUTOMAKE_OPTIONS = foreign
 
1bda73a7
 MAINTAINERCLEANFILES = \
 	config.log config.status \
 	$(srcdir)/Makefile.in \
 	$(srcdir)/config.h.in $(srcdir)/config.h.in~ $(srcdir)/configure \
 	$(srcdir)/install-sh $(srcdir)/ltmain.sh $(srcdir)/missing \
 	$(srcdir)/depcomp $(srcdir)/aclocal.m4 \
 	$(srcdir)/config.guess $(srcdir)/config.sub \
74fce85e
 	$(srcdir)/openvpn.spec
ef12b6f5
 CLEANFILES = openvpn.8.html configure.h
6fbf66fa
 
1bda73a7
 EXTRA_DIST = \
 	easy-rsa \
 	sample-config-files \
 	sample-keys \
 	sample-scripts \
 	suse \
 	tap-win32 \
 	contrib \
 	debug \
 	plugin
 
 SUBDIRS = \
 	images \
 	service-win32 \
 	install-win32
6fbf66fa
 
 TESTS = t_lpback.sh t_cltsrv.sh
1bda73a7
 sbin_PROGRAMS = openvpn
6fbf66fa
 
74fce85e
 dist_noinst_HEADERS =
1bda73a7
 
 dist_noinst_SCRIPTS = \
 	$(TESTS) \
 	doclean \
b0d1154b
 	domake-win \
63c36739
 	t_cltsrv-down.sh \
 	configure_h.awk configure_log.awk
1bda73a7
 
 dist_noinst_DATA = \
 	openvpn.spec \
 	COPYRIGHT.GPL \
 	PORTS \
 	INSTALL-win32.txt
c13953e3
 
6fbf66fa
 openvpn_SOURCES = \
         base64.c base64.h \
 	basic.h \
 	buffer.c buffer.h \
 	circ_list.h \
 	common.h \
 	crypto.c crypto.h \
03731db3
 	dhcp.c dhcp.h \
6fbf66fa
 	errlevel.h \
 	error.c error.h \
 	event.c event.h \
 	fdmisc.c fdmisc.h \
         forward.c forward.h forward-inline.h \
 	fragment.c fragment.h \
 	gremlin.c gremlin.h \
 	helper.c helper.h \
b27dc04c
 	httpdigest.c httpdigest.h \
e12fe286
 	lladdr.c lladdr.h \
6fbf66fa
 	init.c init.h \
 	integer.h \
         interval.c interval.h \
 	list.c list.h \
 	lzo.c lzo.h \
 	manage.c manage.h \
 	mbuf.c mbuf.h \
         memdbg.h \
 	misc.c misc.h \
 	mroute.c mroute.h \
 	mss.c mss.h \
 	mtcp.c mtcp.h \
 	mtu.c mtu.h \
 	mudp.c mudp.h \
 	multi.c multi.h \
         ntlm.c ntlm.h \
 	occ.c occ.h occ-inline.h \
718526e0
 	pkcs11.c pkcs11.h \
6fbf66fa
 	openvpn.c openvpn.h \
 	openvpn-plugin.h \
 	options.c options.h \
 	otime.c otime.h \
 	packet_id.c packet_id.h \
 	perf.c perf.h \
90efcacb
 	pf.c pf.h pf-inline.h \
6fbf66fa
 	ping.c ping.h ping-inline.h \
 	plugin.c plugin.h \
 	pool.c pool.h \
 	proto.c proto.h \
 	proxy.c proxy.h \
1bda73a7
 	ieproxy.h ieproxy.c \
6add6b2f
         ps.c ps.h \
6fbf66fa
 	push.c push.h \
3eee126e
 	pushlist.h \
6fbf66fa
 	reliable.c reliable.h \
 	route.c route.h \
 	schedule.c schedule.h \
 	session_id.c session_id.h \
 	shaper.c shaper.h \
 	sig.c sig.h \
 	socket.c socket.h \
 	socks.c socks.h \
 	ssl.c ssl.h \
 	status.c status.h \
 	syshead.h \
 	thread.c thread.h \
1bda73a7
 	tun.c tun.h \
 	win32.h win32.c \
 	cryptoapi.h cryptoapi.c
6fbf66fa
 
63c36739
 nodist_openvpn_SOURCES = configure.h
 options.$(OBJEXT): configure.h
 
f27bf509
 configure.h: Makefile
63c36739
 	awk -f $(srcdir)/configure_h.awk config.h > $@
 	awk -f $(srcdir)/configure_log.awk config.log >> $@
6fbf66fa
 
 dist-hook:
417ef9aa
 	cd $(distdir) && for i in $(EXTRA_DIST) $(SUBDIRS) ; do find $$i -name .svn -type d -prune -exec rm -rf '{}' ';' ; rm -f `find $$i -type f | grep -E '(^|\/)\.?\#|\~$$|\.s?o$$'` ; done
1bda73a7
 
 if WIN32
 dist_noinst_DATA += openvpn.8
 nodist_html_DATA = openvpn.8.html
 openvpn.8.html: $(srcdir)/openvpn.8
 	$(MAN2HTML) < $(srcdir)/openvpn.8 > openvpn.8.html
 else
 dist_man_MANS = openvpn.8
 endif