8de242e7d2
* brand new integer evaluation code, with precise evaluation * and checks * new hash table implementation, with binary trees * relaxed attitude on failed `##' operators * bugfix on macro definition on command-line wrt nesting macros * support for up to 32766 macro arguments in LOW_MEM code * support for optional additional "identifier" characters such * as '$' or '@' * bugfix: memory leak on void #assert PR: 54989 Submitted by: Mark Linimon <linimon@lonesome.com> Approved by: fjoe (mentor) (implicit)
23 lines
508 B
Makefile
23 lines
508 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: ucpp
|
|
# Date created: Feb 16, 2001
|
|
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ucpp
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://pornin.nerim.net/ucpp/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A C preprocessor and lexer
|
|
|
|
MAN1= ucpp.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MAN1PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|