2003-08-25 07:54:18 -04:00
|
|
|
NULL =
|
|
|
|
|
2003-08-25 11:59:18 -04:00
|
|
|
pkglib_LTLIBRARIES = \
|
|
|
|
bitstring.la \
|
|
|
|
elk-eval.la \
|
|
|
|
hack.la \
|
|
|
|
regexp.la \
|
|
|
|
debug.la \
|
2003-09-05 22:17:09 -04:00
|
|
|
$(gdbm_la) \
|
2003-09-15 07:09:21 -04:00
|
|
|
$(monitor_la) \
|
2003-08-25 11:59:18 -04:00
|
|
|
record.la \
|
|
|
|
struct.la \
|
2003-09-05 21:57:13 -04:00
|
|
|
$(newhandler_la) \
|
2003-08-25 07:54:18 -04:00
|
|
|
$(NULL)
|
|
|
|
|
2003-08-25 11:59:18 -04:00
|
|
|
bitstring_la_SOURCES = bitstring.c
|
2003-09-17 09:18:59 -04:00
|
|
|
bitstring_la_LDFLAGS = -module -avoid-version -no-undefined
|
2003-08-25 11:59:18 -04:00
|
|
|
bitstring_la_LIBADD = $(top_builddir)/src/libelk.la
|
2003-08-25 07:54:18 -04:00
|
|
|
|
2003-08-25 11:59:18 -04:00
|
|
|
elk_eval_la_SOURCES = elk-eval.c
|
2003-09-17 09:18:59 -04:00
|
|
|
elk_eval_la_LDFLAGS = -module -avoid-version -no-undefined
|
2003-08-25 11:59:18 -04:00
|
|
|
elk_eval_la_LIBADD = $(top_builddir)/src/libelk.la
|
2003-08-25 07:54:18 -04:00
|
|
|
|
2003-08-25 11:59:18 -04:00
|
|
|
hack_la_SOURCES = hack.c
|
2003-09-17 09:18:59 -04:00
|
|
|
hack_la_LDFLAGS = -module -avoid-version -no-undefined
|
2003-08-25 11:59:18 -04:00
|
|
|
hack_la_LIBADD = $(top_builddir)/src/libelk.la
|
2003-08-25 07:54:18 -04:00
|
|
|
|
2003-08-25 11:59:18 -04:00
|
|
|
regexp_la_SOURCES = regexp.c
|
2003-09-17 09:18:59 -04:00
|
|
|
regexp_la_LDFLAGS = -module -avoid-version -no-undefined
|
2003-08-25 11:59:18 -04:00
|
|
|
regexp_la_LIBADD = $(top_builddir)/src/libelk.la
|
2003-08-25 07:54:18 -04:00
|
|
|
|
2003-08-25 11:59:18 -04:00
|
|
|
debug_la_SOURCES = debug.c
|
2003-09-17 09:18:59 -04:00
|
|
|
debug_la_LDFLAGS = -module -avoid-version -no-undefined
|
2003-08-25 11:59:18 -04:00
|
|
|
debug_la_LIBADD = $(top_builddir)/src/libelk.la
|
2003-08-25 07:54:18 -04:00
|
|
|
|
2003-09-05 22:17:09 -04:00
|
|
|
if HAVE_GDBM
|
|
|
|
gdbm_la = gdbm.la
|
|
|
|
endif
|
2003-08-25 11:59:18 -04:00
|
|
|
gdbm_la_SOURCES = gdbm.c
|
2003-09-17 09:18:59 -04:00
|
|
|
gdbm_la_LDFLAGS = -module -avoid-version -no-undefined
|
2003-08-25 11:59:18 -04:00
|
|
|
gdbm_la_LIBADD = $(top_builddir)/src/libelk.la -lgdbm
|
2003-08-25 07:54:18 -04:00
|
|
|
|
2003-09-15 07:09:21 -04:00
|
|
|
if HAVE_MONITOR
|
|
|
|
monitor_la = monitor.la
|
|
|
|
endif
|
2003-08-25 11:59:18 -04:00
|
|
|
monitor_la_SOURCES = monitor.c
|
2003-09-17 09:18:59 -04:00
|
|
|
monitor_la_LDFLAGS = -module -avoid-version -no-undefined
|
2003-08-25 11:59:18 -04:00
|
|
|
monitor_la_LIBADD = $(top_builddir)/src/libelk.la
|
2003-08-25 07:54:18 -04:00
|
|
|
|
2003-08-25 11:59:18 -04:00
|
|
|
record_la_SOURCES = record.c
|
2003-09-17 09:18:59 -04:00
|
|
|
record_la_LDFLAGS = -module -avoid-version -no-undefined
|
2003-08-25 11:59:18 -04:00
|
|
|
record_la_LIBADD = $(top_builddir)/src/libelk.la
|
2003-08-25 07:54:18 -04:00
|
|
|
|
2003-08-25 11:59:18 -04:00
|
|
|
struct_la_SOURCES = struct.c
|
2003-09-17 09:18:59 -04:00
|
|
|
struct_la_LDFLAGS = -module -avoid-version -no-undefined
|
2003-08-25 11:59:18 -04:00
|
|
|
struct_la_LIBADD = $(top_builddir)/src/libelk.la
|
2003-08-25 07:54:18 -04:00
|
|
|
|
2003-09-05 21:57:13 -04:00
|
|
|
if HAVE_CXX
|
|
|
|
newhandler_la = newhandler.la
|
2003-09-05 22:17:09 -04:00
|
|
|
endif
|
2003-09-05 21:57:13 -04:00
|
|
|
newhandler_la_SOURCES = newhandler.cpp
|
2003-09-17 09:18:59 -04:00
|
|
|
newhandler_la_LDFLAGS = -module -avoid-version -no-undefined
|
2003-09-05 21:57:13 -04:00
|
|
|
newhandler_la_LIBADD = $(top_builddir)/src/libelk.la
|
|
|
|
|