forked from libreswan/libreswan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.kernel
53 lines (37 loc) · 1.41 KB
/
Makefile.kernel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# 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.
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 += ${WERROR}
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/@IPSECVERSION@/$(IPSECVERSION)/' version.in.c >$@
clean:
rm -f $(L_TARGET) *.o try* core *.core version.c
( cd des && $(MAKE) clean )