blob: 0aaf69dcd2d4cf8ad9835d337ff8145332f54031 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
## Process this file with automake to create Makefile.in
AUTOMAKE_OPTIONS=no-dependencies
LN = ln
bin_PROGRAMS = grep egrep fgrep
base_sources = grep.c grep.h \
dfa.c dfa.h \
kwset.c kwset.h \
obstack.c obstack.h \
regex.c regex.h \
savedir.c savedir.h \
getopt.c getopt1.c getopt.h \
search.c getpagesize.h system.h
egrep_SOURCES = $(base_sources) egrepmat.c
fgrep_SOURCES = $(base_sources) fgrepmat.c
grep_SOURCES = $(base_sources) grepmat.c
LDADD = @ALLOCA@ @LIBOBJS@ @INTLLIBS@
datadir = $(prefix)/@DATADIRNAME@
localedir = $(datadir)/locale
INCLUDES = -I../intl -DLOCALEDIR=\"$(localedir)\"
EXTRA_DIST = \
dosbuf.c \
vms_fab.c vms_fab.h
|