|
a/src/lib/Makefile |
|
b/src/lib/Makefile |
|
... |
|
... |
3 |
|
3 |
|
4 |
LIBS = librcl.a
|
4 |
LIBS = librcl.a
|
5 |
|
5 |
|
6 |
all: depend $(LIBS)
|
6 |
all: depend $(LIBS)
|
7 |
|
7 |
|
8 |
OBJS = base64.o caseconvert.o conftree.o csguess.o debuglog.o \
|
8 |
OBJS = base64.o conftree.o csguess.o debuglog.o \
|
9 |
execmd.o wipedir.o \
|
9 |
execmd.o wipedir.o \
|
10 |
fstreewalk.o mh_html.o mh_mail.o mh_exec.o mh_text.o history.o \
|
10 |
fstreewalk.o mh_html.o mh_mail.o mh_exec.o mh_text.o history.o \
|
11 |
htmlparse.o \
|
11 |
htmlparse.o \
|
12 |
idfile.o indexer.o internfile.o md5.o \
|
12 |
idfile.o indexer.o internfile.o md5.o \
|
13 |
mimehandler.o mimeparse.o mimetype.o myhtmlparse.o pathhash.o pathut.o \
|
13 |
mimehandler.o mimeparse.o mimetype.o myhtmlparse.o pathhash.o pathut.o \
|
14 |
rclconfig.o rcldb.o rclinit.o readfile.o smallut.o \
|
14 |
rclconfig.o rcldb.o rclinit.o readfile.o smallut.o \
|
15 |
textsplit.o transcode.o \
|
15 |
textsplit.o transcode.o \
|
16 |
unacpp.o unac.o docseq.o sortseq.o copyfile.o
|
16 |
unacpp.o unac.o docseq.o sortseq.o copyfile.o
|
17 |
|
17 |
|
18 |
SRCS = ../utils/caseconvert.cpp ../utils/conftree.cpp \
|
18 |
SRCS = ../utils/conftree.cpp \
|
19 |
../index/csguess.cpp ../utils/debuglog.cpp \
|
19 |
../index/csguess.cpp ../utils/debuglog.cpp \
|
20 |
../utils/execmd.cpp ../utils/idfile.cpp ../utils/md5.cpp \
|
20 |
../utils/execmd.cpp ../utils/idfile.cpp ../utils/md5.cpp \
|
21 |
../utils/wipedir.cpp ../utils/fstreewalk.cpp \
|
21 |
../utils/wipedir.cpp ../utils/fstreewalk.cpp \
|
22 |
../common/mh_html.cpp ../common/mh_mail.cpp ../common/mh_exec.cpp \
|
22 |
../common/mh_html.cpp ../common/mh_mail.cpp ../common/mh_exec.cpp \
|
23 |
../common/mh_text.cpp ../common/htmlparse.cpp \
|
23 |
../common/mh_text.cpp ../common/htmlparse.cpp \
|
|
... |
|
... |
43 |
csguess.o : ../index/csguess.cpp
|
43 |
csguess.o : ../index/csguess.cpp
|
44 |
$(CXX) $(CXXFLAGS) -c $<
|
44 |
$(CXX) $(CXXFLAGS) -c $<
|
45 |
debuglog.o : ../utils/debuglog.cpp
|
45 |
debuglog.o : ../utils/debuglog.cpp
|
46 |
$(CXX) $(CXXFLAGS) -c $<
|
46 |
$(CXX) $(CXXFLAGS) -c $<
|
47 |
execmd.o : ../utils/execmd.cpp
|
47 |
execmd.o : ../utils/execmd.cpp
|
48 |
$(CXX) $(CXXFLAGS) -c $<
|
|
|
49 |
caseconvert.o : ../utils/caseconvert.cpp
|
|
|
50 |
$(CXX) $(CXXFLAGS) -c $<
|
48 |
$(CXX) $(CXXFLAGS) -c $<
|
51 |
wipedir.o : ../utils/wipedir.cpp
|
49 |
wipedir.o : ../utils/wipedir.cpp
|
52 |
$(CXX) $(CXXFLAGS) -c $<
|
50 |
$(CXX) $(CXXFLAGS) -c $<
|
53 |
fstreewalk.o : ../utils/fstreewalk.cpp
|
51 |
fstreewalk.o : ../utils/fstreewalk.cpp
|
54 |
$(CXX) $(CXXFLAGS) -c $<
|
52 |
$(CXX) $(CXXFLAGS) -c $<
|