diff options
author | jlam <jlam@pkgsrc.org> | 2001-06-29 09:17:31 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-06-29 09:17:31 +0000 |
commit | 70ac8ac177cfcf996b413a598b2e38915f715a83 (patch) | |
tree | c1cc6a854e5098e177cea390791a5ad787e8b599 /security | |
parent | b1850a55c773eca40eab99e5d76d00304453e41d (diff) | |
download | pkgsrc-70ac8ac177cfcf996b413a598b2e38915f715a83.tar.gz |
Add buildlink.mk file for use by other package Makefiles.
Diffstat (limited to 'security')
-rw-r--r-- | security/rsaref/buildlink.mk | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/security/rsaref/buildlink.mk b/security/rsaref/buildlink.mk new file mode 100644 index 00000000000..d4f1c3f860f --- /dev/null +++ b/security/rsaref/buildlink.mk @@ -0,0 +1,33 @@ +# $NetBSD: buildlink.mk,v 1.1 2001/06/29 09:17:31 jlam Exp $ +# +# This Makefile fragment is included by packages that use rsaref. +# +# To use this Makefile fragment, simply: +# +# (1) Optionally define BUILDLINK_DEPENDS.rsaref to the dependency pattern +# for the version of rsaref desired. +# (2) Include this Makefile fragment in the package Makefile, +# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header +# search path, and +# (4) Add ${BUILDLINK_DIR}/lib to the front of the linker's library search +# path. + +.if !defined(RSAREF_BUILDLINK_MK) +RSAREF_BUILDLINK_MK= # defined + +BUILDLINK_DEPENDS.rsaref?= rsaref-2.0p3 +DEPENDS+= ${BUILDLINK_DEPENDS.rsaref}:../../security/rsaref + +BUILDLINK_PREFIX.rsaref= ${LOCALBASE} +BUILDLINK_FILES.rsaref= include/rsaref.h +BUILDLINK_FILES.rsaref+= lib/librsaref.* + +BUILDLINK_TARGETS.rsaref= rsaref-buildlink +BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.rsaref} + +pre-configure: ${BUILDLINK_TARGETS.rsaref} +rsaref-buildlink: _BUILDLINK_USE + +.include "../../mk/bsd.buildlink.mk" + +.endif # RSAREF_BUILDLINK_MK |