mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 23:23:41 +02:00

* Added RegExprCompat unit which contains an interface to the Regex unit which is compatible with the existing RegExpr unit * Added some more tests and added a define UseRegexCompat to make it possible to choose what regex-implementation to test. Test which fail on the existing regex-parser are placed between ifdefs git-svn-id: trunk@10611 -
29 lines
285 B
Makefile
29 lines
285 B
Makefile
#
|
|
# Makefile.fpc for RegExpr
|
|
#
|
|
|
|
[package]
|
|
name=regexpr
|
|
version=2.0.0
|
|
|
|
[target]
|
|
units=regexpr regex regexprcompat
|
|
examples=testreg1
|
|
|
|
[compiler]
|
|
options=-S2
|
|
|
|
[install]
|
|
fpcpackage=y
|
|
|
|
[default]
|
|
fpcdir=../..
|
|
|
|
[compiler]
|
|
includedir=src
|
|
sourcedir=src tests examples
|
|
|
|
[rules]
|
|
.NOTPARALLEL:
|
|
|