1SUBDIRS =					\
2	pcre
3
4AM_CPPFLAGS =					\
5	 -I$(top_srcdir)
6
7AM_CFLAGS = 					\
8	$(GLIB_CFLAGS)
9
10LIBS =						\
11	$(GLIB_LIBS)
12
13noinst_LTLIBRARIES = libglib-compatible.la
14
15libglib_compatible_la_SOURCES =			\
16	glib-compatible.c			\
17	glib-compatible.h
18
19if GLIB_2_12
20AM_CFLAGS +=					\
21	-DSIZEOF_CHAR=1
22
23libglib_compatible_la_SOURCES +=		\
24	gregex.c				\
25	gregex.h				\
26	glibintl.h				\
27	gsequence.c				\
28	gsequence.h				\
29	gstring.c				\
30	gstring.h				\
31	guniprop.c				\
32	gunicode.h				\
33	gscripttable.h
34
35libglib_compatible_la_LIBADD =				\
36	$(top_builddir)/glib-compatible/pcre/libpcre.la
37endif
38