f2334a415c
cparser 0.9.14 (2012-11-21) --------------------------- * Adapt to libfirm-1.21.0 * Improved error recovery * Improved firm graph generation (faster/smaller graphs) * Implement U,u and u8 strings * Preliminary preprocessor (we still use system cpp by default, as some macro expansion corner cases are still buggy and prevent us from compiling glibc headers) * More gcc extensions: binary constants, __leaf__ attribute cparser 0.9.13 (2011-12-07) --------------------------- * Adapt to libfirm-1.20.0 * Implement --help * More work on preprocessor (still not finished though) * Refactoring work so others can reuse input, optimization order logic * Columns in source positions (but external preprocessor doesn't preserve all spaces) * Improvements to gnu builtins/attributes * Bugfixes (we did alot of csmith testing) cparser 0.9.12 (2011-03-15) --------------------------- * Adapt to libfirm-1.19.0 * Introduce -mtarget (and -mtriple for llvm compatibility) for conventient cross-compilation * Fix big-endian struct layouting * Bugfixes cparser 0.9.11 (2009-05-16) --------------------------- * add missing NEWS entries * fix crash when known C library functions had the wrong number of arguments cparser 0.9.10 (2009-04-15) --------------------------- * bugfixes * adapt to libfirm-1.18.0
34 lines
838 B
Makefile
34 lines
838 B
Makefile
# $NetBSD: Makefile,v 1.6 2014/11/10 16:54:12 asau Exp $
|
|
#
|
|
|
|
DISTNAME= cparser-0.9.14
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cparser/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://cparser.sourceforge.net/
|
|
COMMENT= Recursive descent C99 parser
|
|
|
|
NO_CONFIGURE= yes
|
|
|
|
USE_LANGUAGES= c99
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake pkg-config
|
|
|
|
MAKE_ENV+= LIBTOOL_CFLAGS=-prefer-pic
|
|
MAKE_ENV+= COPTS=${COPTS:Q}
|
|
MAKE_ENV+= builddir=build variant=optimize
|
|
|
|
BUILDLINK_TRANSFORM+= rm:-Werror
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
|
|
|
|
do-install:
|
|
${LIBTOOL} --mode=install \
|
|
${INSTALL_PROGRAM} ${WRKSRC}/build/cparser \
|
|
${DESTDIR}${PREFIX}/bin/cparser
|
|
${INSTALL_MAN} ${WRKSRC}/cparser.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
|
|
.include "../../devel/libfirm/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|