diff options
author | ben <ben@pkgsrc.org> | 2004-04-14 14:54:48 +0000 |
---|---|---|
committer | ben <ben@pkgsrc.org> | 2004-04-14 14:54:48 +0000 |
commit | 1fa44e6102e7562130c3f9776687ff975a5f1c0e (patch) | |
tree | fff0d77566e75617af8fcca0e37d5076fd7a392c /archivers/bicom | |
parent | 5fe59636fa2b6c347dc7cd27a6916f682af0987f (diff) | |
download | pkgsrc-1fa44e6102e7562130c3f9776687ff975a5f1c0e.tar.gz |
Add USE_LANGUAGES=c++ to note use of c++. Also change name of shell
variable from 'file' to 'f' to silence a pkglint warning.
Diffstat (limited to 'archivers/bicom')
-rw-r--r-- | archivers/bicom/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/archivers/bicom/Makefile b/archivers/bicom/Makefile index 7dd41981b90..a9efb4e2a30 100644 --- a/archivers/bicom/Makefile +++ b/archivers/bicom/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2004/03/23 04:40:59 jlam Exp $ +# $NetBSD: Makefile,v 1.17 2004/04/14 14:54:48 ben Exp $ # DISTNAME= bicom101 @@ -16,13 +16,14 @@ LICENSE= no-commercial-use WRKSRC= ${WRKDIR} USE_BUILDLINK3= yes USE_GCC_SHLIB= yes +USE_LANGUAGES= c++ do-build: for i in bialib bicom; do \ cd ${WRKSRC}/$$i && \ - for file in *.cpp; do \ + for f in *.cpp; do \ ${CXX} ${CXXFLAGS} -I./ -I../bialib \ - -c $$file; \ + -c $$f; \ done; \ done cd ${WRKSRC}/bicom && \ |