gambas-source-code/gb.pcre/src/Makefile.am
Benoît Minisini 0139ee4b99 [INTERPRETER]
* NEW: MATCH is a new operator that automatically load the gb.pcre 
  component to implement PCRE pattern matching. The syntax is the same as
  the LIKE operator.

[COMPILER]
* NEW: Add a new MATCH operator.

[GB.FORM]
* BUG: The directory contents size task does not abort anymore when 
  accessing an unreadable files or directory. It now ignore them.
* NEW: When errors are raised while browsing the contents of a directory,
  the file properties dialog display them is a new tab.

[GB.PCRE]
* NEW: Create an API interface for allowing other components to use PCRE
  regular expressions.


git-svn-id: svn://localhost/gambas/trunk@5730 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2013-07-12 23:57:53 +00:00

15 lines
282 B
Makefile

COMPONENT = gb.pcre
include $(top_srcdir)/component.am
gblib_LTLIBRARIES = gb.pcre.la
gb_pcre_la_LIBADD = @PCRE_LIB@
gb_pcre_la_LDFLAGS = -module @LD_FLAGS@ @PCRE_LDFLAGS@
gb_pcre_la_CPPFLAGS = @PCRE_INC@
gb_pcre_la_SOURCES = \
main.h main.c \
regexp.h regexp.c \
gb.pcre.h