2005-01-23 Kevin Cozens <kcozens@cvs.gimp.org> * re/Makefile.am: Added GIMP_CFLAGS to AM_CFLAGS. This is needed by upcoming UTF-8 support.
42 lines
835 B
Makefile
42 lines
835 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
AM_CFLAGS = \
|
|
-DUSE_INTERFACE=1 \
|
|
-I$(top_srcdir) \
|
|
$(GIMP_CFLAGS)
|
|
|
|
noinst_LIBRARIES = libre.a
|
|
|
|
libre_a_SOURCES = \
|
|
cclass.h \
|
|
cname.h \
|
|
debug.c \
|
|
debug.ih \
|
|
re.c \
|
|
re.h \
|
|
regcomp.c \
|
|
regcomp.ih \
|
|
regerror.c \
|
|
regerror.ih \
|
|
regex.h \
|
|
regex2.h \
|
|
regexec.c \
|
|
regfree.c \
|
|
split.c \
|
|
utils.h
|
|
|
|
#engine.c and engine.ih are listed below rather than above since the
|
|
#file is #include'ed in the source files and not compiled separately.
|
|
EXTRA_DIST = \
|
|
COPYRIGHT \
|
|
README \
|
|
README.1st \
|
|
WHATSNEW \
|
|
engine.c \
|
|
engine.ih \
|
|
mkh \
|
|
regex.001 \
|
|
regex.3 \
|
|
regex.7 \
|
|
re.makefile \
|
|
re.scm
|