diff options
author | jlam <jlam@pkgsrc.org> | 2004-08-01 21:02:13 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-08-01 21:02:13 +0000 |
commit | 0462189cf3ebdb437e55a376b2c30491c3a1f2c3 (patch) | |
tree | e05e44a6a14765e2c7c03dd2a1a19e77db63cf7a /security | |
parent | 6e5e0bb56af5499c0dca1098263cdbc63a936601 (diff) | |
download | pkgsrc-0462189cf3ebdb437e55a376b2c30491c3a1f2c3.tar.gz |
Conform to doc/Makefile-example by moving inclusion of buildlink3.mk files
below the variable settings and above any make targets.
Diffstat (limited to 'security')
-rw-r--r-- | security/cy2-ntlm/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/security/cy2-ntlm/Makefile b/security/cy2-ntlm/Makefile index f715568bef9..312f93dbb38 100644 --- a/security/cy2-ntlm/Makefile +++ b/security/cy2-ntlm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2004/03/29 05:47:31 jlam Exp $ +# $NetBSD: Makefile,v 1.8 2004/08/01 21:02:13 jlam Exp $ PKGNAME= ${DISTNAME:S/cyrus-sasl/cy2-ntlm/} COMMENT= Cyrus SASL NTLM authentication plugin @@ -12,11 +12,12 @@ CONFIGURE_ARGS+= --with-openssl=${SSLBASE} BUILD_DIRS= ${WRKSRC}/plugins ALL_TARGET= libntlm.la +.include "../../security/openssl/buildlink3.mk" + do-install: ${INSTALL_DATA_DIR} ${PLUGINDIR} cd ${WRKSRC}/plugins && \ ${SHLIBTOOL} --mode=install \ ${INSTALL_PROGRAM} libntlm.la ${PLUGINDIR} -.include "../../security/openssl/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |