makefile.vnet

来自「xen虚拟机源代码安装包」· VNET 代码 · 共 61 行

VNET
61
字号
# -*- mode: Makefile; -*-#============================================================================## Copyright (C) 2004 Mike Wray <mike.wray@hp.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.## You should have received a copy of the GNU General Public License along# with this program; if not, write to the Free software Foundation, Inc.,# 59 Temple Place, suite 330, Boston, MA 02111-1307 USA#============================================================================ifeq ($(src),)SRC_DIR=elseSRC_DIR=$(src)/endifVNET_SRC :=VNET_SRC += esp.cVNET_SRC += etherip.cVNET_SRC += random.cVNET_SRC += sa_algorithm.cVNET_SRC += sa.cVNET_SRC += skb_context.cVNET_SRC += skb_util.cVNET_SRC += sxpr_util.cVNET_SRC += timer_util.cVNET_SRC += tunnel.cVNET_SRC += varp.cVNET_SRC += varp_socket.cVNET_SRC += vif.cVNET_SRC += vnet.cVNET_SRC += vnet_dev.cVNET_SRC += vnet_ioctl.cVNET_SRC += vnet_eval.cVNET_SRC += vnet_forward.cVNET_LIB_SRC += allocate.cVNET_LIB_SRC += enum.cVNET_LIB_SRC += hash_table.cVNET_LIB_SRC += iostream.cVNET_LIB_SRC += kernel_stream.cVNET_LIB_SRC += mem_stream.cVNET_LIB_SRC += sxpr.cVNET_LIB_SRC += sxpr_parser.cVNET_LIB_SRC += sys_net.cVNET_LIB_SRC += sys_string.cVNET_OBJ := $(VNET_SRC:.c=.o)VNET_LIB_OBJ := $(VNET_LIB_SRC:.c=.o)

⌨️ 快捷键说明

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