source: trunk/packages/xen-3.1/xen-3.1/tools/vnet/vnet-module/Makefile.vnet @ 34

Last change on this file since 34 was 34, checked in by hartmans, 18 years ago

Add xen and xen-common

File size: 1.7 KB
Line 
1# -*- mode: Makefile; -*-
2#============================================================================
3#
4# Copyright (C) 2004 Mike Wray <mike.wray@hp.com>
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by the
8# Free Software Foundation; either version 2 of the License, or (at your
9# option) any later version.
10#
11# This program is distributed in the hope that it will be useful, but
12# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14# for more details.
15#
16# You should have received a copy of the GNU General Public License along
17# with this program; if not, write to the Free software Foundation, Inc.,
18# 59 Temple Place, suite 330, Boston, MA 02111-1307 USA
19#============================================================================
20
21ifeq ($(src),)
22SRC_DIR=
23else
24SRC_DIR=$(src)/
25endif
26
27VNET_SRC :=
28VNET_SRC += esp.c
29VNET_SRC += etherip.c
30VNET_SRC += random.c
31VNET_SRC += sa_algorithm.c
32VNET_SRC += sa.c
33VNET_SRC += skb_context.c
34VNET_SRC += skb_util.c
35VNET_SRC += sxpr_util.c
36VNET_SRC += timer_util.c
37VNET_SRC += tunnel.c
38VNET_SRC += varp.c
39VNET_SRC += varp_socket.c
40VNET_SRC += vif.c
41VNET_SRC += vnet.c
42VNET_SRC += vnet_dev.c
43VNET_SRC += vnet_ioctl.c
44VNET_SRC += vnet_eval.c
45VNET_SRC += vnet_forward.c
46
47VNET_LIB_SRC += allocate.c
48VNET_LIB_SRC += enum.c
49VNET_LIB_SRC += hash_table.c
50VNET_LIB_SRC += iostream.c
51VNET_LIB_SRC += kernel_stream.c
52VNET_LIB_SRC += mem_stream.c
53VNET_LIB_SRC += sxpr.c
54VNET_LIB_SRC += sxpr_parser.c
55VNET_LIB_SRC += sys_net.c
56VNET_LIB_SRC += sys_string.c
57
58VNET_OBJ := $(VNET_SRC:.c=.o)
59VNET_LIB_OBJ := $(VNET_LIB_SRC:.c=.o)
60
Note: See TracBrowser for help on using the repository browser.