|
Revision 2158, 0.9 kB
(checked in by karpet, 2 months ago)
|
yank words.c in favor of tokenizer.c -- benchmarking shows tokenizer.c is 20% faster for ascii and about the same for utf-8
|
| Line | |
|---|
| 1 |
xml2_CFLAGS=`xml2-config --cflags` |
|---|
| 2 |
xml2_ld=`xml2-config --libs` |
|---|
| 3 |
INCLUDES=-I$(top_srcdir)/src |
|---|
| 4 |
LDFLAGS=$(xml2_ld) -pg |
|---|
| 5 |
CFLAGS= -Wall $(xml2_CFLAGS) -pg |
|---|
| 6 |
|
|---|
| 7 |
check_PROGRAMS = |
|---|
| 8 |
myheaders = libswish3.h |
|---|
| 9 |
|
|---|
| 10 |
lib_LTLIBRARIES = libswish3.la |
|---|
| 11 |
libswish3_la_LDFLAGS = -no-undefined -version-info 1:0:0 |
|---|
| 12 |
include_HEADERS = libswish3.h |
|---|
| 13 |
|
|---|
| 14 |
libswish3_la_SOURCES = config.c \ |
|---|
| 15 |
docinfo.c \ |
|---|
| 16 |
error.c \ |
|---|
| 17 |
hash.c \ |
|---|
| 18 |
io.c \ |
|---|
| 19 |
mem.c \ |
|---|
| 20 |
mime_types.c \ |
|---|
| 21 |
parser.c \ |
|---|
| 22 |
namedbuffer.c \ |
|---|
| 23 |
string.c \ |
|---|
| 24 |
times.c \ |
|---|
| 25 |
swish.c \ |
|---|
| 26 |
analyzer.c \ |
|---|
| 27 |
property.c \ |
|---|
| 28 |
metaname.c \ |
|---|
| 29 |
header.c \ |
|---|
| 30 |
tokenizer.c \ |
|---|
| 31 |
$(myheaders) |
|---|
| 32 |
|
|---|