makefile.am

来自「OpenVPN is a robust and highly flexible 」· AM 代码 · 共 112 行

AM
112
字号
##  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.##  Copyright (C) 2002-2004 James Yonan <jim@yonan.net>##  This program is free software; you can redistribute it and/or modify#  it under the terms of the GNU General Public License as published by#  the Free Software Foundation; either version 2 of the License, or#  (at your option) any later version.##  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## This option prevents autoreconf from overriding our COPYING and# INSTALL targets:AUTOMAKE_OPTIONS = foreignsbin_PROGRAMS = openvpnnodist_openvpn_SOURCES = config.hopenvpn_SOURCES = \	basic.h \	buffer.c buffer.h \	circ_list.h \	common.h \	crypto.c crypto.h \	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 \	init.c init.h \	integer.h \        interval.c interval.h \	list.c list.h \	lzo.c lzo.h \	mbuf.c mbuf.h \        memdbg.h \	misc.c misc.h \	mroute.c mroute.h \	mss.c mss.h \	mtu.c mtu.h \	multi.c multi.h \	occ.c occ.h occ-inline.h \	openvpn.c openvpn.h \	options.c options.h \	otime.c otime.h \	packet_id.c packet_id.h \	ping.c ping.h ping-inline.h \	pool.c pool.h \	proto.h \	proxy.c proxy.h \	push.c push.h \	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 \	tun.c tun.hLDADD = @LIBOBJS@man_MANS = openvpn.8EXTRA_DIST = \	doclean \	$(man_MANS) \	COPYRIGHT.GPL \	PORTS \	openvpn.spec \	easy-rsa \	sample-config-files \	sample-keys \	sample-scripts \	gentoo \	suse \	openvpn.spec.in \	config-win32.h \	win32.h \	win32.c \	makefile.w32 \	INSTALL-win32.txt \	tap-win32 \	install-win32 \	service-win32 \	contribdist-hook:	cd $(distdir) && for i in $(EXTRA_DIST) ; do find $$i -name CVS -type d -prune -exec rm -r '{}' ';' ; rm -f `find $$i -type f | grep -E '(^|\/)\.?\#|\~$$'` ; done

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?