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.
39 lines
822 B
Makefile
39 lines
822 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../include
|
|
|
|
#if WIN32
|
|
#AM_CPPFLAGS + = -I../../include
|
|
#endif
|
|
|
|
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 =
|
|
|
|
##include_HEADERS = \
|
|
## ../include/sexpr/cstring.h ../include/sexpr/faststack.h ../include/sexpr/sexp_errors.h \
|
|
## ../include/sexpr/sexp.h ../include/sexpr/sexp_memory.h ../include/sexpr/sexp_ops.h \
|
|
## ../include/sexpr/sexp_vis.h
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libsexpr.pc
|
|
|
|
EXTRA_DIST = \
|
|
libsexpr.pc.in
|
|
|