diff options
author | grant <grant> | 2004-06-12 08:55:05 +0000 |
---|---|---|
committer | grant <grant> | 2004-06-12 08:55:05 +0000 |
commit | 1eaf61f8b58a47cba16eca731dd623b8125c549c (patch) | |
tree | 0f0cc0e2e9ebda50e52eff79fa30e137a39fc2e8 | |
parent | 4bfb11161f4ddb29b2572546c6f0fce52e608c0d (diff) | |
download | pkgsrc-1eaf61f8b58a47cba16eca731dd623b8125c549c.tar.gz |
- this uses a c and c++ compiler.
- drop unneeded trailing /
-rw-r--r-- | devel/re2c/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/devel/re2c/Makefile b/devel/re2c/Makefile index 2aa2cfb068f..fca42652a62 100644 --- a/devel/re2c/Makefile +++ b/devel/re2c/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2004/01/22 08:24:30 grant Exp $ +# $NetBSD: Makefile,v 1.3 2004/06/12 08:55:05 grant Exp $ DISTNAME= re2c-0.9.1 CATEGORIES= devel @@ -9,10 +9,11 @@ HOMEPAGE= http://www.tildeslash.org/ COMMENT= Deterministic Finite State Automaton generator USE_GNU_TOOLS+= make +USE_LANGUAGES= c c++ ALL_TARGET= default do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/re2c ${PREFIX}/bin/ - ${INSTALL_MAN} ${WRKSRC}/re2c.1 ${PREFIX}/man/man1/ + ${INSTALL_PROGRAM} ${WRKSRC}/re2c ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/re2c.1 ${PREFIX}/man/man1 .include "../../mk/bsd.pkg.mk" |