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