svn commit: r221458 - user/gabor/tre-integration/lib/libregex
Gabor Kovesdan
gabor at FreeBSD.org
Wed May 4 20:28:46 UTC 2011
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>
More information about the svn-src-user
mailing list