Files
evolution/libibex/Makefile.am
Not Zed 6c45c449ca If we have the namecache active, and there is no name there, we add it
2000-11-17  Not Zed  <NotZed@HelixCode.com>

        * wordindexmem.c (add_list): If we have the namecache active, and
        there is no name there, we add it directly and dont look it up
        first.

        * testindex.c: Some performance testing & stat gathering stuff.

svn path=/trunk/; revision=6677
2000-11-27 02:05:14 +00:00

40 lines
828 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
noinst_HEADERS = \
ibex_internal.h \
block.h \
wordindex.h \
index.h
INCLUDES = -I$(srcdir) $(GLIB_CFLAGS) $(UNICODE_CFLAGS) \
-DG_LOG_DOMAIN=\"libibex\"
noinst_PROGRAMS = dumpindex testindex
dumpindex_SOURCES = dumpindex.c
dumpindex_LDADD = libibex.la $(GLIB_LIBS) $(UNICODE_LIBS)
testindex_SOURCES = testindex.c
testindex_LDADD = libibex.la $(GLIB_LIBS) $(UNICODE_LIBS) -lm
#noinst_PROGRAMS = mkindex lookup
#
#mkindex_SOURCES = mkindex.c
#mkindex_LDADD = libibex.la $(GLIB_LIBS) $(UNICODE_LIBS)
#
#lookup_SOURCES = lookup.c
#lookup_LDADD = libibex.la $(GLIB_LIBS) $(UNICODE_LIBS)