libsexpr/lib/Makefile.am

30 lines
557 B
Makefile
Raw Normal View History

2014-11-24 12:25:18 +02:00
## Process this file with automake to produce Makefile.in
AM_CPPFLAGS = \
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
-DPACKAGE_DATA_DIR=\""$(pkgdatadir)"\" \
2019-02-17 00:47:57 +02:00
-I$(top_srcdir)/include
2015-11-15 01:10:43 +03:00
2014-11-24 12:25:18 +02:00
AM_CFLAGS =\
-Wall\
-g
lib_LTLIBRARIES = libsexpr.la
libsexpr_la_SOURCES = \
cstring.c event_temp.c faststack.c io.c cswrap.c \
2014-11-24 12:25:18 +02:00
parser.c sexp.c sexp_memory.c sexp_ops.c sexp_vis.c
libsexpr_la_LDFLAGS =
libsexpr_la_LIBADD =
pkgconfigdir = $(libdir)/pkgconfig
2014-11-24 17:31:38 +02:00
pkgconfig_DATA = libsexpr.pc
2014-11-24 12:25:18 +02:00
EXTRA_DIST = \
2014-11-24 17:31:38 +02:00
libsexpr.pc.in
2014-11-24 12:25:18 +02:00