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.
35 lines
798 B
Makefile
35 lines
798 B
Makefile
10 years ago
|
## Process this file with automake to produce Makefile.in
|
||
|
|
||
|
AM_CPPFLAGS = \
|
||
|
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
|
||
|
-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
|
||
|
-DPACKAGE_DATA_DIR=\""$(pkgdatadir)"\" \
|
||
|
$(LIBTDATA_CFLAGS) -I../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 =
|
||
|
|
||
|
##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-1.2.pc
|
||
|
|
||
|
EXTRA_DIST = \
|
||
|
libsexpr-1.2.pc.in
|
||
|
|