1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
|
# -*- makefile -*-
c_src_dir = src_c
java_src_main_dir = java/org/tartarus/snowball
java_src_dir = $(java_src_main_dir)/ext
libstemmer_algorithms = danish dutch english finnish french german hungarian \
italian \
norwegian porter portuguese romanian \
russian spanish swedish turkish yiddish
KOI8_R_algorithms = russian
ISO_8859_1_algorithms = danish dutch english finnish french german hungarian \
italian \
norwegian porter portuguese spanish swedish
ISO_8859_2_algorithms = romanian
other_algorithms = german2 kraaij_pohlmann lovins
all_algorithms = $(libstemmer_algorithms) $(other_algorithms)
COMPILER_SOURCES = compiler/space.c \
compiler/tokeniser.c \
compiler/analyser.c \
compiler/generator.c \
compiler/driver.c \
compiler/generator_java.c
COMPILER_HEADERS = compiler/header.h \
compiler/syswords.h \
compiler/syswords2.h
RUNTIME_SOURCES = runtime/api.c \
runtime/utilities.c
RUNTIME_HEADERS = runtime/api.h \
runtime/header.h
JAVARUNTIME_SOURCES = java/org/tartarus/snowball/Among.java \
java/org/tartarus/snowball/SnowballProgram.java \
java/org/tartarus/snowball/SnowballStemmer.java \
java/org/tartarus/snowball/TestApp.java
LIBSTEMMER_SOURCES = libstemmer/libstemmer.c
LIBSTEMMER_UTF8_SOURCES = libstemmer/libstemmer_utf8.c
LIBSTEMMER_HEADERS = include/libstemmer.h libstemmer/modules.h libstemmer/modules_utf8.h
LIBSTEMMER_EXTRA = libstemmer/modules.txt libstemmer/modules_utf8.txt libstemmer/libstemmer_c.in
STEMWORDS_SOURCES = examples/stemwords.c
ALL_ALGORITHM_FILES = $(all_algorithms:%=algorithms/%/stem*.sbl)
C_LIB_SOURCES = $(libstemmer_algorithms:%=$(c_src_dir)/stem_UTF_8_%.c) \
$(KOI8_R_algorithms:%=$(c_src_dir)/stem_KOI8_R_%.c) \
$(ISO_8859_1_algorithms:%=$(c_src_dir)/stem_ISO_8859_1_%.c) \
$(ISO_8859_2_algorithms:%=$(c_src_dir)/stem_ISO_8859_2_%.c)
C_LIB_HEADERS = $(libstemmer_algorithms:%=$(c_src_dir)/stem_UTF_8_%.h) \
$(KOI8_R_algorithms:%=$(c_src_dir)/stem_KOI8_R_%.h) \
$(ISO_8859_1_algorithms:%=$(c_src_dir)/stem_ISO_8859_1_%.h) \
$(ISO_8859_2_algorithms:%=$(c_src_dir)/stem_ISO_8859_2_%.h)
C_OTHER_SOURCES = $(other_algorithms:%=$(c_src_dir)/stem_UTF_8_%.c)
C_OTHER_HEADERS = $(other_algorithms:%=$(c_src_dir)/stem_UTF_8_%.h)
JAVA_SOURCES = $(libstemmer_algorithms:%=$(java_src_dir)/%Stemmer.java)
COMPILER_OBJECTS=$(COMPILER_SOURCES:.c=.o)
RUNTIME_OBJECTS=$(RUNTIME_SOURCES:.c=.o)
LIBSTEMMER_OBJECTS=$(LIBSTEMMER_SOURCES:.c=.o)
LIBSTEMMER_UTF8_OBJECTS=$(LIBSTEMMER_UTF8_SOURCES:.c=.o)
STEMWORDS_OBJECTS=$(STEMWORDS_SOURCES:.c=.o)
C_LIB_OBJECTS = $(C_LIB_SOURCES:.c=.o)
C_OTHER_OBJECTS = $(C_OTHER_SOURCES:.c=.o)
JAVA_CLASSES = $(JAVA_SOURCES:.java=.class)
JAVA_RUNTIME_CLASSES=$(JAVARUNTIME_SOURCES:.java=.class)
CFLAGS=-Iinclude -O2
CPPFLAGS=-W -Wall -Wmissing-prototypes -Wmissing-declarations
all: snowball libstemmer.o stemwords $(C_OTHER_SOURCES) $(C_OTHER_HEADERS) $(C_OTHER_OBJECTS)
clean:
rm -f $(COMPILER_OBJECTS) $(RUNTIME_OBJECTS) \
$(LIBSTEMMER_OBJECTS) $(LIBSTEMMER_UTF8_OBJECTS) $(STEMWORDS_OBJECTS) snowball \
libstemmer.o stemwords \
libstemmer/modules.h \
libstemmer/modules_utf8.h \
snowball.splint \
$(C_LIB_SOURCES) $(C_LIB_HEADERS) $(C_LIB_OBJECTS) \
$(C_OTHER_SOURCES) $(C_OTHER_HEADERS) $(C_OTHER_OBJECTS) \
$(JAVA_SOURCES) $(JAVA_CLASSES) $(JAVA_RUNTIME_CLASSES) \
libstemmer/mkinc.mak libstemmer/mkinc_utf8.mak \
libstemmer/libstemmer.c libstemmer/libstemmer_utf8.c
rm -rf dist
rmdir $(c_src_dir) || true
snowball: $(COMPILER_OBJECTS)
$(CC) -o $@ $^
$(COMPILER_OBJECTS): $(COMPILER_HEADERS)
libstemmer/libstemmer.c: libstemmer/libstemmer_c.in
sed 's/@MODULES_H@/modules.h/' $^ >$@
libstemmer/libstemmer_utf8.c: libstemmer/libstemmer_c.in
sed 's/@MODULES_H@/modules_utf8.h/' $^ >$@
libstemmer/modules.h libstemmer/mkinc.mak: libstemmer/mkmodules.pl libstemmer/modules.txt
libstemmer/mkmodules.pl $@ $(c_src_dir) libstemmer/modules.txt libstemmer/mkinc.mak
libstemmer/modules_utf8.h libstemmer/mkinc_utf8.mak: libstemmer/mkmodules.pl libstemmer/modules_utf8.txt
libstemmer/mkmodules.pl $@ $(c_src_dir) libstemmer/modules_utf8.txt libstemmer/mkinc_utf8.mak utf8
libstemmer/libstemmer.o: libstemmer/modules.h $(C_LIB_HEADERS)
libstemmer.o: libstemmer/libstemmer.o $(RUNTIME_OBJECTS) $(C_LIB_OBJECTS)
$(AR) -cru $@ $^
stemwords: $(STEMWORDS_OBJECTS) libstemmer.o
$(CC) -o $@ $^
algorithms/%/stem_Unicode.sbl: algorithms/%/stem_ISO_8859_1.sbl
cp $^ $@
$(c_src_dir)/stem_UTF_8_%.c $(c_src_dir)/stem_UTF_8_%.h: algorithms/%/stem_Unicode.sbl snowball
@mkdir -p $(c_src_dir)
@l=`echo "$<" | sed 's!\(.*\)/stem_Unicode.sbl$$!\1!;s!^.*/!!'`; \
o="$(c_src_dir)/stem_UTF_8_$${l}"; \
echo "./snowball $< -o $${o} -eprefix $${l}_UTF_8_ -r ../runtime -u"; \
./snowball $< -o $${o} -eprefix $${l}_UTF_8_ -r ../runtime -u
$(c_src_dir)/stem_KOI8_R_%.c $(c_src_dir)/stem_KOI8_R_%.h: algorithms/%/stem_KOI8_R.sbl snowball
@mkdir -p $(c_src_dir)
@l=`echo "$<" | sed 's!\(.*\)/stem_KOI8_R.sbl$$!\1!;s!^.*/!!'`; \
o="$(c_src_dir)/stem_KOI8_R_$${l}"; \
echo "./snowball $< -o $${o} -eprefix $${l}_KOI8_R_ -r ../runtime"; \
./snowball $< -o $${o} -eprefix $${l}_KOI8_R_ -r ../runtime
$(c_src_dir)/stem_ISO_8859_1_%.c $(c_src_dir)/stem_ISO_8859_1_%.h: algorithms/%/stem_ISO_8859_1.sbl snowball
@mkdir -p $(c_src_dir)
@l=`echo "$<" | sed 's!\(.*\)/stem_ISO_8859_1.sbl$$!\1!;s!^.*/!!'`; \
o="$(c_src_dir)/stem_ISO_8859_1_$${l}"; \
echo "./snowball $< -o $${o} -eprefix $${l}_ISO_8859_1_ -r ../runtime"; \
./snowball $< -o $${o} -eprefix $${l}_ISO_8859_1_ -r ../runtime
$(c_src_dir)/stem_ISO_8859_2_%.c $(c_src_dir)/stem_ISO_8859_2_%.h: algorithms/%/stem_ISO_8859_2.sbl snowball
@mkdir -p $(c_src_dir)
@l=`echo "$<" | sed 's!\(.*\)/stem_ISO_8859_2.sbl$$!\1!;s!^.*/!!'`; \
o="$(c_src_dir)/stem_ISO_8859_2_$${l}"; \
echo "./snowball $< -o $${o} -eprefix $${l}_ISO_8859_2_ -r ../runtime"; \
./snowball $< -o $${o} -eprefix $${l}_ISO_8859_2_ -r ../runtime
$(c_src_dir)/stem_%.o: $(c_src_dir)/stem_%.c $(c_src_dir)/stem_%.h
$(CC) $(CFLAGS) -O2 -c -o $@ $< -Wall
$(java_src_dir)/%Stemmer.java: algorithms/%/stem_Unicode.sbl snowball
@mkdir -p $(java_src_dir)
@l=`echo "$<" | sed 's!\(.*\)/stem_Unicode.sbl$$!\1!;s!^.*/!!'`; \
o="$(java_src_dir)/$${l}Stemmer"; \
echo "./snowball $< -j -o $${o} -p \"org.tartarus.snowball.SnowballStemmer\" -eprefix $${l}_ -r ../runtime -n $${l}Stemmer"; \
./snowball $< -j -o $${o} -p "org.tartarus.snowball.SnowballStemmer" -eprefix $${l}_ -r ../runtime -n $${l}Stemmer
splint: snowball.splint
snowball.splint: $(COMPILER_SOURCES)
splint $^ >$@ -weak
# Make a full source distribution
dist: dist_snowball dist_libstemmer_c dist_libstemmer_java
# Make a distribution of all the sources involved in snowball
dist_snowball: $(COMPILER_SOURCES) $(COMPILER_HEADERS) \
$(RUNTIME_SOURCES) $(RUNTIME_HEADERS) \
$(LIBSTEMMER_SOURCES) \
$(LIBSTEMMER_UTF8_SOURCES) \
$(LIBSTEMMER_HEADERS) \
$(LIBSTEMMER_EXTRA) \
$(ALL_ALGORITHM_FILES) $(STEMWORDS_SOURCES) \
GNUmakefile README doc/TODO libstemmer/mkmodules.pl
destname=snowball_code; \
dest=dist/$${destname}; \
rm -rf $${dest} && \
rm -f $${dest}.tgz && \
for file in $^; do \
dir=`dirname $$file` && \
mkdir -p $${dest}/$${dir} && \
cp -a $${file} $${dest}/$${dir} || exit 1 ; \
done && \
(cd dist && tar zcf $${destname}.tgz $${destname}) && \
rm -rf $${dest}
# Make a distribution of all the sources required to compile the C library.
dist_libstemmer_c: \
$(RUNTIME_SOURCES) \
$(RUNTIME_HEADERS) \
$(LIBSTEMMER_SOURCES) \
$(LIBSTEMMER_UTF8_SOURCES) \
$(LIBSTEMMER_HEADERS) \
$(LIBSTEMMER_EXTRA) \
$(C_LIB_SOURCES) \
$(C_LIB_HEADERS) \
libstemmer/mkinc.mak \
libstemmer/mkinc_utf8.mak
destname=libstemmer_c; \
dest=dist/$${destname}; \
rm -rf $${dest} && \
rm -f $${dest}.tgz && \
mkdir -p $${dest} && \
cp -a doc/libstemmer_c_README $${dest}/README && \
mkdir -p $${dest}/examples && \
cp -a examples/stemwords.c $${dest}/examples && \
mkdir -p $${dest}/$(c_src_dir) && \
cp -a $(C_LIB_SOURCES) $(C_LIB_HEADERS) $${dest}/$(c_src_dir) && \
mkdir -p $${dest}/runtime && \
cp -a $(RUNTIME_SOURCES) $(RUNTIME_HEADERS) $${dest}/runtime && \
mkdir -p $${dest}/libstemmer && \
cp -a $(LIBSTEMMER_SOURCES) $(LIBSTEMMER_UTF8_SOURCES) $(LIBSTEMMER_HEADERS) $(LIBSTEMMER_EXTRA) $${dest}/libstemmer && \
mkdir -p $${dest}/include && \
mv $${dest}/libstemmer/libstemmer.h $${dest}/include && \
(cd $${dest} && \
echo "README" >> MANIFEST && \
ls $(c_src_dir)/*.c $(c_src_dir)/*.h >> MANIFEST && \
ls runtime/*.c runtime/*.h >> MANIFEST && \
ls libstemmer/*.c libstemmer/*.h >> MANIFEST && \
ls include/*.h >> MANIFEST) && \
cp -a libstemmer/mkinc.mak libstemmer/mkinc_utf8.mak $${dest}/ && \
echo 'include mkinc.mak' >> $${dest}/Makefile && \
echo 'CFLAGS=-Iinclude' >> $${dest}/Makefile && \
echo 'all: libstemmer.o stemwords' >> $${dest}/Makefile && \
echo 'libstemmer.o: $$(snowball_sources:.c=.o)' >> $${dest}/Makefile && \
echo ' $$(AR) -cru $$@ $$^' >> $${dest}/Makefile && \
echo 'stemwords: examples/stemwords.o libstemmer.o' >> $${dest}/Makefile && \
echo ' $$(CC) -o $$@ $$^' >> $${dest}/Makefile && \
echo 'clean:' >> $${dest}/Makefile && \
echo ' rm -f stemwords *.o $(c_src_dir)/*.o runtime/*.o libstemmer/*.o' >> $${dest}/Makefile && \
(cd dist && tar zcf $${destname}.tgz $${destname}) && \
rm -rf $${dest}
# Make a distribution of all the sources required to compile the Java library.
dist_libstemmer_java: $(RUNTIME_SOURCES) $(RUNTIME_HEADERS) \
$(LIBSTEMMER_EXTRA) \
$(JAVA_SOURCES)
destname=libstemmer_java; \
dest=dist/$${destname}; \
rm -rf $${dest} && \
rm -f $${dest}.tgz && \
mkdir -p $${dest} && \
cp -a doc/libstemmer_java_README $${dest}/README && \
mkdir -p $${dest}/$(java_src_dir) && \
cp -a $(JAVA_SOURCES) $${dest}/$(java_src_dir) && \
mkdir -p $${dest}/$(java_src_main_dir) && \
cp -a $(JAVARUNTIME_SOURCES) $${dest}/$(java_src_main_dir) && \
(cd $${dest} && \
echo "README" >> MANIFEST && \
ls $(java_src_dir)/*.java >> MANIFEST && \
ls $(java_src_main_dir)/*.java >> MANIFEST) && \
(cd dist && tar zcf $${destname}.tgz $${destname}) && \
rm -rf $${dest}
check: check_utf8 check_iso_8859_1 check_iso_8859_2 check_koi8r
check_utf8: $(libstemmer_algorithms:%=check_utf8_%)
check_iso_8859_1: $(ISO_8859_1_algorithms:%=check_iso_8859_1_%)
check_iso_8859_2: $(ISO_8859_2_algorithms:%=check_iso_8859_2_%)
check_koi8r: $(KOI8_R_algorithms:%=check_koi8r_%)
check_utf8_%: ../data/% stemwords
@echo "Checking output of `echo $<|sed 's!.*/!!'` stemmer with UTF-8"
@./stemwords -c UTF_8 -l `echo $<|sed 's!.*/!!'` -i $</voc.txt -o tmp.txt
@diff -u $</output.txt tmp.txt
@if [ -e $</diffs.txt ] ; \
then \
./stemwords -c UTF_8 -l `echo $<|sed 's!.*/!!'` -i $</voc.txt -o tmp.txt -p2 && \
diff -u $</diffs.txt tmp.txt; \
fi
@rm tmp.txt
check_iso_8859_1_%: ../data/% stemwords
@echo "Checking output of `echo $<|sed 's!.*/!!'` stemmer with ISO_8859_1"
@iconv -fUTF8 -tISO8859-1 $</voc.txt|./stemwords -c ISO_8859_1 -l `echo $<|sed 's!.*/!!'` -o tmp.txt
@iconv -fUTF8 -tISO8859-1 $</output.txt|diff -u - tmp.txt
@rm tmp.txt
check_iso_8859_2_%: ../data/% stemwords
@echo "Checking output of `echo $<|sed 's!.*/!!'` stemmer with ISO_8859_2"
@iconv -fUTF8 -tISO8859-2 $</voc.txt|./stemwords -c ISO_8859_2 -l `echo $<|sed 's!.*/!!'` -o tmp.txt
@iconv -fUTF8 -tISO8859-2 $</output.txt|diff -u - tmp.txt
@rm tmp.txt
check_koi8r_%: ../data/% stemwords
@echo "Checking output of `echo $<|sed 's!.*/!!'` stemmer with KOI8R"
@iconv -fUTF8 -tKOI8R $</voc.txt|./stemwords -c KOI8_R -l `echo $<|sed 's!.*/!!'` -o tmp.txt
@iconv -fUTF8 -tKOI8R $</output.txt|diff -u - tmp.txt
@rm tmp.txt
|