diff options
author | Rene Mayrhofer <rene@mayrhofer.eu.org> | 2007-04-12 20:30:08 +0000 |
---|---|---|
committer | Rene Mayrhofer <rene@mayrhofer.eu.org> | 2007-04-12 20:30:08 +0000 |
commit | b0d8ed94fe9e74afb49fdf5f11e4add29879c65c (patch) | |
tree | b20167235628771046e940a82a906a6d0991ee4a /lib/Makefile.kernel | |
parent | ea939d07c84d2a8e51215458063fc05e9c399290 (diff) | |
download | vyos-strongswan-b0d8ed94fe9e74afb49fdf5f11e4add29879c65c.tar.gz vyos-strongswan-b0d8ed94fe9e74afb49fdf5f11e4add29879c65c.zip |
[svn-upgrade] Integrating new upstream version, strongswan (4.1.1)
Diffstat (limited to 'lib/Makefile.kernel')
-rw-r--r-- | lib/Makefile.kernel | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/lib/Makefile.kernel b/lib/Makefile.kernel deleted file mode 100644 index f32a4f0b7..000000000 --- a/lib/Makefile.kernel +++ /dev/null @@ -1,65 +0,0 @@ -# FreeS/WAN library -# Copyright (C) 1998-2002 Henry Spencer. -# -# 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. See <http://www.fsf.org/copyleft/gpl.txt>. -# -# 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. -# -# RCSID $Id: Makefile.kernel,v 1.1 2004/03/15 20:35:24 as Exp $ - - - -include ../Makefile.inc -include ../Makefile.ver - - - -ifndef TOPDIR -TOPDIR := /usr/src/linux -endif - -L_TARGET := libkernel.a - -obj-y := addrtoa.o datatot.o goodmask.o \ - pfkey_v2_build.o pfkey_v2_debug.o pfkey_v2_ext_bits.o pfkey_v2_parse.o \ - prng.o rangetoa.o satoa.o \ - subnetof.o subnettoa.o ultoa.o version.o - -HDRS=freeswan.h internal.h - -EXTRA_CFLAGS += -I. $(KLIPSCOMPILE) - -EXTRA_CFLAGS += -Wall -#EXTRA_CFLAGS += -Wconversion -#EXTRA_CFLAGS += -Wmissing-prototypes -EXTRA_CFLAGS += -Wpointer-arith -#EXTRA_CFLAGS += -Wcast-qual -#EXTRA_CFLAGS += -Wmissing-declarations -EXTRA_CFLAGS += -Wstrict-prototypes -#EXTRA_CFLAGS += -pedantic -#EXTRA_CFLAGS += -W -#EXTRA_CFLAGS += -Wwrite-strings -#EXTRA_CFLAGS += -Wbad-function-cast - -active-objs := $(sort $(obj-y) $(obj-m)) -L_OBJS := $(obj-y) -M_OBJS := $(obj-m) -MIX_OBJS := $(filter $(export-objs), $(active-objs)) - -include $(TOPDIR)/Rules.make - -$(obj-y): $(HDRS) - -# build version.c using version number from Makefile.ver -version.c: version.in.c - sed '/"/s/xxx/$(IPSECVERSION)/' version.in.c >$@ - -clean: - rm -f $(L_TARGET) *.o try* core *.core version.c - ( cd des && $(MAKE) clean ) |