diff options
author | jlam <jlam> | 2001-08-20 02:25:21 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-08-20 02:25:21 +0000 |
commit | d0c892023a254af36eb0e2c78f9484f4ba4645b9 (patch) | |
tree | 987bf32741b936298e345eb8dc49fae8d6ef550e /converters | |
parent | 23f107238cf47a5bbdfffcbec015a070363dd2ee (diff) | |
download | pkgsrc-d0c892023a254af36eb0e2c78f9484f4ba4645b9.tar.gz |
Honor CFLAGS and CC settings passed in from environment and mark as
USE_BUILDLINK_ONLY.
Diffstat (limited to 'converters')
-rw-r--r-- | converters/rtf2html/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/converters/rtf2html/Makefile b/converters/rtf2html/Makefile index c4a16a5322c..c33aba150f2 100644 --- a/converters/rtf2html/Makefile +++ b/converters/rtf2html/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2001/05/14 13:36:21 agc Exp $ +# $NetBSD: Makefile,v 1.2 2001/08/20 02:25:21 jlam Exp $ # DISTNAME= rtf2html @@ -10,7 +10,10 @@ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.fe.msk.ru/~vitus/catdoc/ COMMENT= Rich Text to HTML file converter -ALL_TARGET= rtf2html +USE_BUILDLINK_ONLY= # defined +ALL_TARGET= rtf2html +MAKE_FLAGS+= CC="${CC}" +MAKE_FLAGS+= CFLAGS="${CFLAGS}" do-install: ${INSTALL_PROGRAM} ${WRKSRC}/rtf2html ${PREFIX}/bin |