⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.in

📁 实现vpn网关用来建立 IP虚拟隧道
💻 IN
字号:
##  Universal TUN/TAP device driver.#  Copyright (C) 1999-2000 Maxim Krasnyansky <max_mk@yahoo.com>##  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.##  $Id: Makefile.in,v 1.4 2000/05/05 02:45:13 maxk Exp $##  Based on original Makefile for if_tap module#    Copyright (c) 1999 Maksim Yevmenkin <m_evmenkin@yahoo.com>#CONFIGURE_FILES = Makefile config.status config.cache config.h config.logINSTALL = @INSTALL@ARCH = @ARCH@KDIR = @KDIR@KVER = @KVER@DESTDIR = /modulesVNODE = @VNODE@DEFS = @DEFS@CFLAGS+=$(DEFS) $(COPTS) $(CWARNFLAGS) $(DEBUG_FLAGS) -DKLD_MODULECFLAGS+=-nostdinc -I- -I. -I@ -I@/../include -I/usr/includeKMOD = if_tapSRCS = if_tap.c if_tap.h vnode_if.hOBJS = ${SRCS:N*.h:R:S/$/.o/g}all: ${KMOD}.kovnode_if.h:	$(VNODE)${KMOD}.kld:  ${SRCS} ${OBJS}.if ${OBJFORMAT} == elf	gensetdefs ${OBJS}	${CC} ${CFLAGS} -c setdef0.c	${CC} ${CFLAGS} -c setdef1.c	${LD} ${LDFLAGS} -r -o ${.TARGET} setdef0.o ${OBJS} setdef1.o.else	${LD} ${LDFLAGS} -r -o ${.TARGET} ${OBJS}.endif${KMOD}.ko:   ${KMOD}.kld	${LD} -Bshareable ${LDFLAGS} -o ${.TARGET} ${KMOD}.klddev:	./create_devinst:  all dev	${INSTALL} ${COPY} -o ${KMODOWN} -g ${KMODGRP} -m ${KMODMODE} \		${_INSTALLFLAGS} ${KMOD}.ko ${DESTDIR}clean:	rm -f *.odistclean:	rm -f *.h *.c *.ko *.kld @ machine	rm -f $(CONFIGURE_FILES)

⌨️ 快捷键说明

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