diff options
author | jlam <jlam@pkgsrc.org> | 2001-05-24 08:53:54 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-05-24 08:53:54 +0000 |
commit | 54718a4db7a73e26f6c276f352e0682c36b5c527 (patch) | |
tree | 5f91b7729fd1bdb67af0af17bb78b53ca29f8bd6 /audio/id3ed | |
parent | a7c8e855cba1fc8efee19d3a05c929de3572328e (diff) | |
download | pkgsrc-54718a4db7a73e26f6c276f352e0682c36b5c527.tar.gz |
Standardize name of file to include for build-links to be "buildlink.mk".
Use BUILDLINK_INCDIR, BUILDLINK_LIBDIR for locations of linked headers
and libraries. Create a variable BUILDLINK_TARGETS whose value is the
list of build-link targets to execute.
Diffstat (limited to 'audio/id3ed')
-rw-r--r-- | audio/id3ed/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/audio/id3ed/Makefile b/audio/id3ed/Makefile index fe2bcddc7c4..6fa47b775af 100644 --- a/audio/id3ed/Makefile +++ b/audio/id3ed/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2001/05/22 15:44:32 jlam Exp $ +# $NetBSD: Makefile,v 1.9 2001/05/24 08:53:54 jlam Exp $ # DISTNAME= id3ed-1.10.2 @@ -14,13 +14,13 @@ USE_GMAKE= YES USE_GNU_READLINE= # uses rl_startup_hook -.include "../../devel/readline/Makefile.readline" +.include "../../devel/readline/buildlink.mk" CONFIGURE_ENV+= LIBS="${LIBS}" -CFLAGS+= -I${WRKINCDIR} -LIBS+= -L${WRKLIBDIR} ${LDFLAGS} +CFLAGS+= -I${BUILDLINK_INCDIR} +LIBS+= -L${BUILDLINK_LIBDIR} ${LDFLAGS} -pre-configure: link-readline-headers link-readline-libs +pre-configure: ${BUILDLINK_TARGETS} post-extract: ${TOUCH} ${WRKSRC}/install.sh |