Files
evolution/libibex/Makefile.am
Peter Williams 0372c03d38 Add GAL_LIBS here too. (testindex_LDADD): And here.
2001-06-01  Peter Williams  <peterw@ximian.com>

	* Makefile.am (dumpindex_LDADD): Add GAL_LIBS here too.
	(testindex_LDADD): And here.

svn path=/trunk/; revision=10080
2001-06-01 16:55:57 +00:00

35 lines
632 B
Makefile

## Process this file with automake to produce Makefile.in
noinst_LTLIBRARIES = libibex.la
libibex_la_SOURCES = \
wordindex.c wordindexmem.c \
block.c ibex.h \
hash.c \
disktail.c \
ibex_block.c
libibex_la_LDFLAGS = -static
libibex_la_LIBADD = \
$(GAL_LIBS)
noinst_HEADERS = \
ibex_internal.h \
block.h \
wordindex.h \
index.h
INCLUDES = \
$(EXTRA_GNOME_CFLAGS) \
-DG_LOG_DOMAIN=\"libibex\"
noinst_PROGRAMS = dumpindex testindex
dumpindex_SOURCES = dumpindex.c
dumpindex_LDADD = libibex.la $(GAL_LIBS) $(THREADS_LIBS)
testindex_SOURCES = testindex.c
testindex_LDADD = libibex.la $(GAL_LIBS) $(THREADS_LIBS) -lm