You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
548 B
Makefile
30 lines
548 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
AM_CPPFLAGS = \
|
|
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
|
|
-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
|
|
-DPACKAGE_DATA_DIR=\""$(pkgdatadir)"\" \
|
|
-I$(top_srcdir)/include
|
|
|
|
AM_CFLAGS =\
|
|
-Wall\
|
|
-g
|
|
|
|
lib_LTLIBRARIES = libsexpr.la
|
|
|
|
|
|
libsexpr_la_SOURCES = \
|
|
cstring.c event_temp.c faststack.c io.c \
|
|
parser.c sexp.c sexp_memory.c sexp_ops.c sexp_vis.c
|
|
|
|
libsexpr_la_LDFLAGS =
|
|
|
|
libsexpr_la_LIBADD =
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libsexpr.pc
|
|
|
|
EXTRA_DIST = \
|
|
libsexpr.pc.in
|
|
|