Makefile.am 277 B

12345678910111213141516
  1. noinst_LTLIBRARIES = libsearch.la
  2. libsearch_la_SOURCES = \
  3. search.c \
  4. internal.h \
  5. lib.c \
  6. normal.c \
  7. regex.c \
  8. glob.c \
  9. hex.c
  10. AM_CPPFLAGS = \
  11. -DDATADIR=\""$(pkgdatadir)/"\" \
  12. -DLOCALEDIR=\""$(localedir)"\"
  13. AM_CFLAGS = -I$(top_srcdir) $(GLIB_CFLAGS) $(PCRE_CFLAGS)