Add GRegex for regular expression matching. (#50075)
[platform/upstream/glib.git] / glib / pcre / Makefile.am
1 INCLUDES = \
2         -DG_LOG_DOMAIN=\"GLib-GRegex\" \
3         -DSUPPORT_UCP \
4         -DSUPPORT_UTF8 \
5         -DNEWLINE=-1 \
6         -DMATCH_LIMIT=10000000 \
7         -DMATCH_LIMIT_RECURSION=10000000 \
8         -DMAX_NAME_SIZE=32 \
9         -DMAX_NAME_COUNT=10000 \
10         -DMAX_DUPLENGTH=30000 \
11         -DLINK_SIZE=2 \
12         -DEBCDIC=0 \
13         -DPOSIX_MALLOC_THRESHOLD=10 \
14         -I$(top_srcdir) \
15         -I$(srcdir) \
16         -I$(top_srcdir)/glib \
17         @GLIB_DEBUG_FLAGS@ \
18         -DG_DISABLE_DEPRECATED \
19         $(DEPRECATED_FLAGS)\
20         $(WARN_CFLAGS) \
21         $(PCRE_WARN_CFLAGS) \
22         $(DEP_CFLAGS)
23
24 noinst_LTLIBRARIES = libpcre.la
25
26 libpcre_headers =
27
28 libpcre_la_SOURCES = \
29         pcre_chartables.c \
30         pcre_compile.c \
31         pcre_config.c \
32         pcre_dfa_exec.c \
33         pcre_exec.c \
34         pcre_fullinfo.c \
35         pcre_get.c \
36         pcre_globals.c \
37         pcre_info.c \
38         pcre_maketables.c \
39         pcre_newline.c \
40         pcre_ord2utf8.c \
41         pcre_refcount.c \
42         pcre_study.c \
43         pcre_tables.c \
44         pcre_try_flipped.c \
45         pcre_ucp_searchfuncs.c \
46         pcre_valid_utf8.c \
47         pcre_version.c \
48         pcre_xclass.c \
49         pcre.h \
50         pcre_internal.h \
51         ucp.h \
52         ucpinternal.h \
53         $(libpcre_headers)
54
55 libpcre_la_LIBADD = $(DEP_LIBS)
56
57 libpcre_la_LDFLAGS = -no-undefined
58
59 EXTRA_DIST =                            \
60                 COPYING                 \
61                 makefile.msc
62