Switch to unified view

a/src/lib/Makefile b/src/lib/Makefile
...
...
6
6
7
LIBS = librcl.a
7
LIBS = librcl.a
8
8
9
all: $(LIBS)
9
all: $(LIBS)
10
10
11
OBJS =  rclaspell.o rclconfig.o rclinit.o textsplit.o unacpp.o csguess.o indexer.o mimetype.o htmlparse.o internfile.o mh_exec.o mh_html.o mh_mail.o mh_text.o mimehandler.o myhtmlparse.o docseq.o history.o sortseq.o pathhash.o rcldb.o searchdata.o stemdb.o base64.o conftree.o copyfile.o debuglog.o execmd.o fstreewalk.o idfile.o md5.o mimeparse.o pathut.o readfile.o smallut.o transcode.o wipedir.o
11
OBJS =  rclaspell.o rclconfig.o rclinit.o textsplit.o unacpp.o csguess.o indexer.o mimetype.o htmlparse.o myhtmlparse.o mimehandler.o internfile.o mh_exec.o mh_html.o mh_mail.o mh_mbox.o mh_text.o docseq.o history.o sortseq.o pathhash.o rcldb.o searchdata.o stemdb.o base64.o conftree.o copyfile.o debuglog.o execmd.o fstreewalk.o idfile.o md5.o mimeparse.o pathut.o readfile.o smallut.o transcode.o wipedir.o
12
DEPS =  rclaspell.dep.stamp rclconfig.dep.stamp rclinit.dep.stamp textsplit.dep.stamp unacpp.dep.stamp csguess.dep.stamp indexer.dep.stamp mimetype.dep.stamp htmlparse.dep.stamp internfile.dep.stamp mh_exec.dep.stamp mh_html.dep.stamp mh_mail.dep.stamp mh_text.dep.stamp mimehandler.dep.stamp myhtmlparse.dep.stamp docseq.dep.stamp history.dep.stamp sortseq.dep.stamp pathhash.dep.stamp rcldb.dep.stamp searchdata.dep.stamp stemdb.dep.stamp base64.dep.stamp conftree.dep.stamp copyfile.dep.stamp debuglog.dep.stamp execmd.dep.stamp fstreewalk.dep.stamp idfile.dep.stamp md5.dep.stamp mimeparse.dep.stamp pathut.dep.stamp readfile.dep.stamp smallut.dep.stamp transcode.dep.stamp wipedir.dep.stamp
12
DEPS =  rclaspell.dep.stamp rclconfig.dep.stamp rclinit.dep.stamp textsplit.dep.stamp unacpp.dep.stamp csguess.dep.stamp indexer.dep.stamp mimetype.dep.stamp htmlparse.dep.stamp myhtmlparse.dep.stamp mimehandler.dep.stamp internfile.dep.stamp mh_exec.dep.stamp mh_html.dep.stamp mh_mail.dep.stamp mh_mbox.dep.stamp mh_text.dep.stamp docseq.dep.stamp history.dep.stamp sortseq.dep.stamp pathhash.dep.stamp rcldb.dep.stamp searchdata.dep.stamp stemdb.dep.stamp base64.dep.stamp conftree.dep.stamp copyfile.dep.stamp debuglog.dep.stamp execmd.dep.stamp fstreewalk.dep.stamp idfile.dep.stamp md5.dep.stamp mimeparse.dep.stamp pathut.dep.stamp readfile.dep.stamp smallut.dep.stamp transcode.dep.stamp wipedir.dep.stamp
13
13
14
librcl.a : $(DEPS) $(OBJS) unac.o
14
librcl.a : $(DEPS) $(OBJS) unac.o
15
    ar ru librcl.a $(OBJS) unac.o
15
    ar ru librcl.a $(OBJS) unac.o
16
    $(RANLIB) librcl.a
16
    $(RANLIB) librcl.a
17
17
...
...
33
    $(CXX) $(ALL_CXXFLAGS) -c ../index/indexer.cpp
33
    $(CXX) $(ALL_CXXFLAGS) -c ../index/indexer.cpp
34
mimetype.o : ../index/mimetype.cpp
34
mimetype.o : ../index/mimetype.cpp
35
    $(CXX) $(ALL_CXXFLAGS) -c ../index/mimetype.cpp
35
    $(CXX) $(ALL_CXXFLAGS) -c ../index/mimetype.cpp
36
htmlparse.o : ../internfile/htmlparse.cpp
36
htmlparse.o : ../internfile/htmlparse.cpp
37
    $(CXX) $(ALL_CXXFLAGS) -c ../internfile/htmlparse.cpp
37
    $(CXX) $(ALL_CXXFLAGS) -c ../internfile/htmlparse.cpp
38
myhtmlparse.o : ../internfile/myhtmlparse.cpp
39
  $(CXX) $(ALL_CXXFLAGS) -c ../internfile/myhtmlparse.cpp
40
mimehandler.o : ../internfile/mimehandler.cpp
41
  $(CXX) $(ALL_CXXFLAGS) -c ../internfile/mimehandler.cpp
38
internfile.o : ../internfile/internfile.cpp
42
internfile.o : ../internfile/internfile.cpp
39
    $(CXX) $(ALL_CXXFLAGS) -c ../internfile/internfile.cpp
43
    $(CXX) $(ALL_CXXFLAGS) -c ../internfile/internfile.cpp
40
mh_exec.o : ../internfile/mh_exec.cpp
44
mh_exec.o : ../internfile/mh_exec.cpp
41
    $(CXX) $(ALL_CXXFLAGS) -c ../internfile/mh_exec.cpp
45
    $(CXX) $(ALL_CXXFLAGS) -c ../internfile/mh_exec.cpp
42
mh_html.o : ../internfile/mh_html.cpp
46
mh_html.o : ../internfile/mh_html.cpp
43
    $(CXX) $(ALL_CXXFLAGS) -c ../internfile/mh_html.cpp
47
    $(CXX) $(ALL_CXXFLAGS) -c ../internfile/mh_html.cpp
44
mh_mail.o : ../internfile/mh_mail.cpp
48
mh_mail.o : ../internfile/mh_mail.cpp
45
    $(CXX) $(ALL_CXXFLAGS) -c ../internfile/mh_mail.cpp
49
    $(CXX) $(ALL_CXXFLAGS) -c ../internfile/mh_mail.cpp
50
mh_mbox.o : ../internfile/mh_mbox.cpp
51
  $(CXX) $(ALL_CXXFLAGS) -c ../internfile/mh_mbox.cpp
46
mh_text.o : ../internfile/mh_text.cpp
52
mh_text.o : ../internfile/mh_text.cpp
47
    $(CXX) $(ALL_CXXFLAGS) -c ../internfile/mh_text.cpp
53
    $(CXX) $(ALL_CXXFLAGS) -c ../internfile/mh_text.cpp
48
mimehandler.o : ../internfile/mimehandler.cpp
49
  $(CXX) $(ALL_CXXFLAGS) -c ../internfile/mimehandler.cpp
50
myhtmlparse.o : ../internfile/myhtmlparse.cpp
51
  $(CXX) $(ALL_CXXFLAGS) -c ../internfile/myhtmlparse.cpp
52
docseq.o : ../query/docseq.cpp
54
docseq.o : ../query/docseq.cpp
53
    $(CXX) $(ALL_CXXFLAGS) -c ../query/docseq.cpp
55
    $(CXX) $(ALL_CXXFLAGS) -c ../query/docseq.cpp
54
history.o : ../query/history.cpp
56
history.o : ../query/history.cpp
55
    $(CXX) $(ALL_CXXFLAGS) -c ../query/history.cpp
57
    $(CXX) $(ALL_CXXFLAGS) -c ../query/history.cpp
56
sortseq.o : ../query/sortseq.cpp
58
sortseq.o : ../query/sortseq.cpp
...
...
122
    $(CXX) -M $(ALL_CXXFLAGS) ../index/mimetype.cpp > mimetype.dep
124
    $(CXX) -M $(ALL_CXXFLAGS) ../index/mimetype.cpp > mimetype.dep
123
    touch mimetype.dep.stamp
125
    touch mimetype.dep.stamp
124
htmlparse.dep.stamp : ../internfile/htmlparse.cpp
126
htmlparse.dep.stamp : ../internfile/htmlparse.cpp
125
    $(CXX) -M $(ALL_CXXFLAGS) ../internfile/htmlparse.cpp > htmlparse.dep
127
    $(CXX) -M $(ALL_CXXFLAGS) ../internfile/htmlparse.cpp > htmlparse.dep
126
    touch htmlparse.dep.stamp
128
    touch htmlparse.dep.stamp
129
myhtmlparse.dep.stamp : ../internfile/myhtmlparse.cpp
130
  $(CXX) -M $(ALL_CXXFLAGS) ../internfile/myhtmlparse.cpp > myhtmlparse.dep
131
  touch myhtmlparse.dep.stamp
132
mimehandler.dep.stamp : ../internfile/mimehandler.cpp
133
  $(CXX) -M $(ALL_CXXFLAGS) ../internfile/mimehandler.cpp > mimehandler.dep
134
  touch mimehandler.dep.stamp
127
internfile.dep.stamp : ../internfile/internfile.cpp
135
internfile.dep.stamp : ../internfile/internfile.cpp
128
    $(CXX) -M $(ALL_CXXFLAGS) ../internfile/internfile.cpp > internfile.dep
136
    $(CXX) -M $(ALL_CXXFLAGS) ../internfile/internfile.cpp > internfile.dep
129
    touch internfile.dep.stamp
137
    touch internfile.dep.stamp
130
mh_exec.dep.stamp : ../internfile/mh_exec.cpp
138
mh_exec.dep.stamp : ../internfile/mh_exec.cpp
131
    $(CXX) -M $(ALL_CXXFLAGS) ../internfile/mh_exec.cpp > mh_exec.dep
139
    $(CXX) -M $(ALL_CXXFLAGS) ../internfile/mh_exec.cpp > mh_exec.dep
...
...
134
    $(CXX) -M $(ALL_CXXFLAGS) ../internfile/mh_html.cpp > mh_html.dep
142
    $(CXX) -M $(ALL_CXXFLAGS) ../internfile/mh_html.cpp > mh_html.dep
135
    touch mh_html.dep.stamp
143
    touch mh_html.dep.stamp
136
mh_mail.dep.stamp : ../internfile/mh_mail.cpp
144
mh_mail.dep.stamp : ../internfile/mh_mail.cpp
137
    $(CXX) -M $(ALL_CXXFLAGS) ../internfile/mh_mail.cpp > mh_mail.dep
145
    $(CXX) -M $(ALL_CXXFLAGS) ../internfile/mh_mail.cpp > mh_mail.dep
138
    touch mh_mail.dep.stamp
146
    touch mh_mail.dep.stamp
147
mh_mbox.dep.stamp : ../internfile/mh_mbox.cpp
148
  $(CXX) -M $(ALL_CXXFLAGS) ../internfile/mh_mbox.cpp > mh_mbox.dep
149
  touch mh_mbox.dep.stamp
139
mh_text.dep.stamp : ../internfile/mh_text.cpp
150
mh_text.dep.stamp : ../internfile/mh_text.cpp
140
    $(CXX) -M $(ALL_CXXFLAGS) ../internfile/mh_text.cpp > mh_text.dep
151
    $(CXX) -M $(ALL_CXXFLAGS) ../internfile/mh_text.cpp > mh_text.dep
141
    touch mh_text.dep.stamp
152
    touch mh_text.dep.stamp
142
mimehandler.dep.stamp : ../internfile/mimehandler.cpp
143
  $(CXX) -M $(ALL_CXXFLAGS) ../internfile/mimehandler.cpp > mimehandler.dep
144
  touch mimehandler.dep.stamp
145
myhtmlparse.dep.stamp : ../internfile/myhtmlparse.cpp
146
  $(CXX) -M $(ALL_CXXFLAGS) ../internfile/myhtmlparse.cpp > myhtmlparse.dep
147
  touch myhtmlparse.dep.stamp
148
docseq.dep.stamp : ../query/docseq.cpp
153
docseq.dep.stamp : ../query/docseq.cpp
149
    $(CXX) -M $(ALL_CXXFLAGS) ../query/docseq.cpp > docseq.dep
154
    $(CXX) -M $(ALL_CXXFLAGS) ../query/docseq.cpp > docseq.dep
150
    touch docseq.dep.stamp
155
    touch docseq.dep.stamp
151
history.dep.stamp : ../query/history.cpp
156
history.dep.stamp : ../query/history.cpp
152
    $(CXX) -M $(ALL_CXXFLAGS) ../query/history.cpp > history.dep
157
    $(CXX) -M $(ALL_CXXFLAGS) ../query/history.cpp > history.dep
...
...
215
include unacpp.dep
220
include unacpp.dep
216
include csguess.dep
221
include csguess.dep
217
include indexer.dep
222
include indexer.dep
218
include mimetype.dep
223
include mimetype.dep
219
include htmlparse.dep
224
include htmlparse.dep
225
include myhtmlparse.dep
226
include mimehandler.dep
220
include internfile.dep
227
include internfile.dep
221
include mh_exec.dep
228
include mh_exec.dep
222
include mh_html.dep
229
include mh_html.dep
223
include mh_mail.dep
230
include mh_mail.dep
231
include mh_mbox.dep
224
include mh_text.dep
232
include mh_text.dep
225
include mimehandler.dep
226
include myhtmlparse.dep
227
include docseq.dep
233
include docseq.dep
228
include history.dep
234
include history.dep
229
include sortseq.dep
235
include sortseq.dep
230
include pathhash.dep
236
include pathhash.dep
231
include rcldb.dep
237
include rcldb.dep