58d6e41581
Based on PR 31480 by Jeroen Ruigrok van der Werven, fixed manual page installation path. ucpp is a C preprocessor and lexer. It has the following goals: - Strict conformance to the C99 standard (with switches to disable some extensions and mimic C90 behaviour) - Low memory consumption - Possibility to use the code as a lexer (that outputs tokens directly)
18 lines
427 B
Makefile
18 lines
427 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2007/05/24 16:23:23 obache Exp $
|
|
#
|
|
|
|
DISTNAME= ucpp-1.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://pornin.nerim.net/ucpp/
|
|
|
|
MAINTAINER= asmodai@in-nomine.org
|
|
HOMEPAGE= http://pornin.nerim.net/ucpp/
|
|
COMMENT= C preprocessor and lexer
|
|
|
|
MAN1= ucpp.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ucpp ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${MAN1} ${PREFIX}/${PKGMANDIR}/man1
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|