blob: fbf7664149469c6c6995b10cc54917e7886f017a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
## Process this file with automake to produce Makefile.in
localedir = $(datadir)/locale
AM_CPPFLAGS = -I$(top_srcdir)/lib
if TRE_AGREP
bin_PROGRAMS = agrep
agrep_SOURCES = agrep.c
agrep_LDADD = ../lib/libtre.la $(LTLIBINTL)
agrep_CFLAGS = -DLOCALEDIR=\"$(localedir)\"
if TRE_PROFILE
agrep_LDFLAGS = -static
endif
endif
|