added anytun to isakmpd
[anytun.git] / keyexchange / isakmpd-20041012 / sysdep / linux / GNUmakefile.sysdep
blobf4ae5c5e9a3f2de0660e0a4759d69dc7b0e778f8
1 #       $OpenBSD: GNUmakefile.sysdep,v 1.9 2004/08/10 09:49:51 ho Exp $
4 # Copyright (c) 1999 Niklas Hallqvist.  All rights reserved.
5 # Copyright (c) 2003 Thomas Walpuski.  All rights reserved.
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions
9 # are met:
10 # 1. Redistributions of source code must retain the above copyright
11 #    notice, this list of conditions and the following disclaimer.
12 # 2. Redistributions in binary form must reproduce the above copyright
13 #    notice, this list of conditions and the following disclaimer in the
14 #    documentation and/or other materials provided with the distribution.
16 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 LIBGMP:=        /usr/lib/libgmp.a
29 LIBCRYPTO:=     /usr/lib/libcrypto.a
30 LIBSYSDEPDIR:=  ${.CURDIR}/sysdep/common/libsysdep
31 LIBSYSDEP:=     ${LIBSYSDEPDIR}/libsysdep.a
33 LDADD+=         -lgmp ${LIBSYSDEP} ${LIBCRYPTO}
34 DPADD+=         ${LIBGMP} ${LIBSYSDEP}
36 CFLAGS+=        -DHAVE_GETNAMEINFO -DUSE_OLD_SOCKADDR -DHAVE_PCAP \
37                 -DNEED_SYSDEP_APP -DMP_FLAVOUR=MP_FLAVOUR_GMP -DUSE_AES \
38                 -I${.CURDIR}/sysdep/linux/include -I${.CURDIR}/sysdep/common \
39                 -I/usr/include/openssl
41 FEATURES=       debug tripledes blowfish cast ec aggressive x509 policy
42 FEATURES+=      dpd nat_traversal isakmp_cfg des aes
44 IPSEC_SRCS=     anytun_key.c
45 IPSEC_CFLAGS=   -DUSE_ANYTUN_KEY
47 USE_LIBCRYPO=   defined
48 HAVE_DLOPEN=    defined
49 USE_KEYNOTE=    defined
51 # hack libsysdep.a dependenc
52 ${LIBSYSDEPDIR}/.depend ${LIBSYSDEP}:
53         cd ${LIBSYSDEPDIR} && \
54                 ${MAKE} --no-print-directory \
55                         CFLAGS="${CFLAGS}" MKDEP="${MKDEP}" ${MAKECMDGOALS}
57 ifeq ($(findstring clean,$(MAKECMDGOALS)),clean)
58 SUBDIR+=        sysdep/common/libsysdep
59 MAKEFLAGS+=     --no-print-directory
60 endif