2005-12-16 19:25:07 +03:00
|
|
|
# $NetBSD: Makefile,v 1.16 2005/12/16 16:25:07 jmc Exp $
|
1999-07-02 00:15:26 +04:00
|
|
|
|
* Add user-controlled mk.conf variables
- SHLIBDIR Location to install shared libraries if ${USE_SHLIBDIR}
is "yes". Defaults to "/usr/lib".
- USE_SHLIBDIR If "yes", install shared libraries in ${SHLIBDIR}
instead of ${LIBDIR}. Defaults to "no".
Sets ${_LIBSODIR} to the appropriate value.
This may be set by individual Makefiles as well.
- SHLINKDIR Location of shared linker. Defaults to "/usr/libexec".
If != "/usr/libexec", change the dynamic-linker
encoded in shared programs
* Set USE_SHLIBDIR for libraries used by /bin and /sbin:
libc libcrypt libcrypto libedit libipsec libkvm libm libmi387
libtermcap libutil libz
* If ${_LIBSODIR} != ${LIBDIR}, add symlinks from ${LIBDIR}/${LIB}.so*
to ${_LIBSODIR}/${LIB}.so* for compatibility.
* Always install /sbin/init statically (for now)
The net effect of these changes depends on how the variables are set:
1.) If nothing is set or changed, there is no change from the
current behaviour:
- Static /bin, /sbin, and bits of /usr/*
- Dynamic rest
- Shared linker is /usr/libexec/ld*so
2.) If the following make variables are set:
LDSTATIC=
SHLINKDIR=/lib
SHLIBDIR=/lib
Then the behaviour becomes:
- Dynamic tools
- .so libraries used by /bin and /sbin are installed to /lib,
with symlinks from /usr/lib/lib*so to -> /lib/lib*so
where appropriate
- Shared linker is /lib/ld*so
3.) As per 2.), but add the following variable:
USE_SHLIBDIR=yes
This forces all .so's to be instaleld in /lib (with compat
symlinks), not just those tagged by their Makefiles to be.
Again, compat symlinks are installed
2001-12-28 04:32:37 +03:00
|
|
|
USE_SHLIBDIR= yes
|
2005-02-19 19:55:02 +03:00
|
|
|
WARNS= 0 # Will be fixed later
|
2002-08-19 18:55:14 +04:00
|
|
|
|
2005-01-10 05:58:58 +03:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
2005-02-19 19:55:02 +03:00
|
|
|
DIST= ${NETBSDSRCDIR}/crypto/dist/ipsec-tools
|
2002-08-19 18:55:14 +04:00
|
|
|
LIB= ipsec
|
2005-02-19 19:58:26 +03:00
|
|
|
CPPFLAGS+= -I${DIST}/src/libipsec -I. -DHAVE_CONFIG_H
|
|
|
|
CPPFLAGS+= -DIPSEC_DEBUG -I${.CURDIR} -I${NETBSDSRCDIR}/sys
|
2005-02-24 16:45:08 +03:00
|
|
|
CPPFLAGS+= -DSADB_X_EALG_AESCBC=SADB_X_EALG_AES
|
2005-06-28 20:01:59 +04:00
|
|
|
# Don't worry about argument promotion for now.
|
|
|
|
LINTFLAGS+= -X 58
|
2005-01-10 05:58:58 +03:00
|
|
|
|
|
|
|
.if (${USE_INET6} != "no")
|
|
|
|
CPPFLAGS+=-DINET6
|
|
|
|
.endif
|
1999-07-02 00:15:26 +04:00
|
|
|
|
2005-02-19 19:55:02 +03:00
|
|
|
.PATH: ${DIST}/src/libipsec
|
2000-03-14 00:23:55 +03:00
|
|
|
|
2005-02-19 19:55:02 +03:00
|
|
|
SRCS= ipsec_dump_policy.c ipsec_get_policylen.c ipsec_strerror.c \
|
2005-12-16 19:25:07 +03:00
|
|
|
pfkey.c pfkey_dump.c policy_parse.y policy_token.l key_debug.c
|
|
|
|
|
|
|
|
LPREFIX+=__libipsec
|
|
|
|
YPREFIX+=__libipsec
|
|
|
|
YHEADER=policy_parse.h
|
1999-07-02 00:15:26 +04:00
|
|
|
|
|
|
|
MAN= ipsec_set_policy.3 ipsec_strerror.3
|
|
|
|
MLINKS+=ipsec_set_policy.3 ipsec_get_policylen.3 \
|
|
|
|
ipsec_set_policy.3 ipsec_dump_policy.3
|
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|