1## Process this file with automake to produce Makefile.in
2lib_LTLIBRARIES = libtre.la
3libtre_la_LDFLAGS = -no-undefined -version-info 5:0:0 $(LDFLAGS)
4libtre_la_LIBADD = $(LTLIBINTL)
5
6noinst_HEADERS =              \
7          tre-ast.h           \
8          tre-compile.h                 \
9          tre-internal.h                \
10          tre-match-utils.h   \
11          tre-mem.h           \
12          tre-parse.h                   \
13          tre-stack.h                   \
14          xmalloc.h
15
16libtre_la_SOURCES =           \
17          tre-ast.c           \
18          tre-compile.c                 \
19          tre-match-backtrack.c         \
20          tre-match-parallel.c          \
21          tre-mem.c           \
22          tre-parse.c                   \
23          tre-stack.c                   \
24          regcomp.c           \
25          regexec.c           \
26          regerror.c
27
28if TRE_APPROX
29libtre_la_SOURCES += tre-match-approx.c
30endif TRE_APPROX
31
32dist_pkginclude_HEADERS = tre.h regex.h
33nodist_pkginclude_HEADERS = tre-config.h
34