Date: Wed, 4 May 2011 20:28:45 +0000 (UTC) From: Gabor Kovesdan <gabor@FreeBSD.org> To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r221458 - user/gabor/tre-integration/lib/libregex Message-ID: <201105042028.p44KSjR9066156@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gabor Date: Wed May 4 20:28:45 2011 New Revision: 221458 URL: http://svn.freebsd.org/changeset/base/221458 Log: - Add Makefile glue to build TRE as a standalone library Added: user/gabor/tre-integration/lib/libregex/ user/gabor/tre-integration/lib/libregex/Makefile (contents, props changed) Added: user/gabor/tre-integration/lib/libregex/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/gabor/tre-integration/lib/libregex/Makefile Wed May 4 20:28:45 2011 (r221458) @@ -0,0 +1,17 @@ +# +# $FreeBSD$ +# + +.PATH: ${.CURDIR}/../../contrib/tre/lib + +LIB= regex +SHLIB_MAJOR=1 +NO_MAN= yes +WARNS?= 6 + +CFLAGS+=-DHAVE_CONFIG_H -I${.CURDIR}/../../contrib/tre +SRCS= regcomp.c regerror.c regexec.c tre-ast.c tre-compile.c \ + tre-match-approx.c tre-match-backtrack.c tre-match-parallel.c \ + tre-mem.c tre-parse.c tre-stack.c xmalloc.c + +.include <bsd.lib.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201105042028.p44KSjR9066156>