39 lines
702 B
Makefile
39 lines
702 B
Makefile
moopcre_sources = \
|
|
pcre_chartables.c \
|
|
pcre_compile.c \
|
|
pcre_config.c \
|
|
pcre_dfa_exec.c \
|
|
pcre_exec.c \
|
|
pcre_fullinfo.c \
|
|
pcre_get.c \
|
|
pcre_globals.c \
|
|
pcre.h \
|
|
pcre-real.h \
|
|
pcre_info.c \
|
|
pcre_internal.h \
|
|
pcre_newline.c \
|
|
pcre_ord2utf8.c \
|
|
pcre_study.c \
|
|
pcre_tables.c \
|
|
pcre_try_flipped.c \
|
|
pcre_ucp_searchfuncs.c \
|
|
pcre_valid_utf8.c \
|
|
pcre_version.c \
|
|
pcre_xclass.c \
|
|
ucp.h \
|
|
ucpinternal.h
|
|
|
|
EXTRA_DIST = \
|
|
AUTHORS.pcre \
|
|
ChangeLog \
|
|
COPYING.pcre \
|
|
NEWS \
|
|
pcre_printint.src \
|
|
ucptable.c
|
|
|
|
noinst_LTLIBRARIES = libpcre.la
|
|
libpcre_la_SOURCES = $(moopcre_sources)
|
|
AM_CFLAGS = \
|
|
$(GLIB_CFLAGS) \
|
|
$(MOO_CFLAGS)
|