blob: 8bc60d4daa9c39ba5022ea914ef07d482969a328 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
## Process this file with automake to produce Makefile.in
noinst_LIBRARIES = libsed.a
noinst_HEADERS = getopt.h utils.h obstack.h regex_.h regex_internal.h \
strverscmp.h stdbool_.h
libsed_a_SOURCES = getopt1.c getopt.c utils.c
EXTRA_DIST = memmove.c strerror.c regcomp.c regexec.c regex_internal.c
AM_CPPFLAGS = -I$(top_srcdir)/lib -I$(top_srcdir)/intl -I$(top_srcdir) \
-I$(top_builddir)/lib -I$(top_builddir)/intl
libsed_a_LIBADD = @LIBOBJS@ @ALLOCA@
libsed_a_DEPENDENCIES = $(libsed_a_LIBADD)
DISTCLEANFILES = regex.h stdbool.h
|