Home | History | Annotate | Download | only in sed
      1 ## Process this file with automake to produce Makefile.in
      2 bin_PROGRAMS = sed
      3 
      4 localedir = $(datadir)/locale
      5 
      6 sed_SOURCES = sed.c compile.c execute.c regexp.c fmt.c mbcs.c utils.c
      7 noinst_HEADERS = sed.h utils.h
      8 
      9 AM_CPPFLAGS = -I$(top_srcdir)/lib -I$(top_srcdir) -I$(top_builddir)/lib \
     10 	-DLOCALEDIR=\"$(localedir)\"
     11 
     12 sed_LDADD = ../lib/libsed.a @INTLLIBS@ @LIB_ACL@ @LIB_SELINUX@
     13 sed_DEPENDENCIES = ../lib/libsed.a
     14 
     15 $(PROGRAMS): $(LDADD)
     16 
     17 
     18