From 16cf84d794bfe9fdb245d38760256286384d8380 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Sun, 21 Jun 2026 22:26:42 +0200 Subject: added Automake file Builds two convenience libraries: libterex.la and libteurex.la. --- Makefile.am | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile.am diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..3de47d8 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,11 @@ +AM_CPPFLAGS = -DREGEX_STANDALONE + +noinst_LTLIBRARIES = libterex.la +libterex_la_SOURCES = regcomp.c regexec.c regerror.c regfree.c \ + regalone.h regcustom.h regerrs.h regex.h regguts.h +# included from regcomp.c and regexec.c +EXTRA_libterex_la_SOURCES = regc_color.c regc_cvec.c regc_lex.c regc_locale.c regc_nfa.c + +noinst_LTLIBRARIES += libteurex.la +libteurex_la_CFLAGS = -DREGEX_UTF8 +libteurex_la_SOURCES = $(libterex_la_SOURCES) -- cgit v1.2.3