|
a/src/rcldb/Makefile |
|
b/src/rcldb/Makefile |
1 |
# @(#$Id: Makefile,v 1.1 2007-06-02 08:30:42 dockes Exp $ (C) 2005 J.F.Dockes
|
1 |
# @(#$Id: Makefile,v 1.1 2007-06-02 08:30:42 dockes Exp $ (C) 2005 J.F.Dockes
|
2 |
depth = ..
|
2 |
depth = ..
|
3 |
include $(depth)/mk/sysconf
|
3 |
include $(depth)/mk/sysconf
|
4 |
|
4 |
|
5 |
# Only test executables get build in here
|
5 |
# Only test executables get build in here
|
6 |
PROGS = stoplist
|
6 |
PROGS = synfamily stoplist
|
7 |
|
7 |
|
8 |
all: $(BIGLIB) $(PROGS)
|
8 |
all: $(BIGLIB) $(PROGS)
|
9 |
|
9 |
|
10 |
$(BIGLIB): force
|
10 |
$(BIGLIB): force
|
11 |
cd $(depth)/lib;$(MAKE)
|
11 |
cd $(depth)/lib;$(MAKE)
|
|
... |
|
... |
17 |
$(LIBICONV) $(LIBSYS)
|
17 |
$(LIBICONV) $(LIBSYS)
|
18 |
trstoplist.o : stoplist.cpp
|
18 |
trstoplist.o : stoplist.cpp
|
19 |
$(CXX) $(ALL_CXXFLAGS) -DTEST_STOPLIST -c -o trstoplist.o \
|
19 |
$(CXX) $(ALL_CXXFLAGS) -DTEST_STOPLIST -c -o trstoplist.o \
|
20 |
stoplist.cpp
|
20 |
stoplist.cpp
|
21 |
|
21 |
|
|
|
22 |
SYNFAMILY_OBJS= trsynfamily.o $(BIGLIB)
|
|
|
23 |
synfamily : $(SYNFAMILY_OBJS)
|
|
|
24 |
$(CXX) $(ALL_CXXFLAGS) -o synfamily $(SYNFAMILY_OBJS) \
|
|
|
25 |
$(BIGLIB) $(LIBICONV) $(LIBXAPIAN) $(LIBSYS)
|
|
|
26 |
trsynfamily.o : synfamily.cpp
|
|
|
27 |
$(CXX) $(ALL_CXXFLAGS) -DTEST_SYNFAMILY -c -o trsynfamily.o \
|
|
|
28 |
synfamily.cpp
|
|
|
29 |
|
22 |
clean:
|
30 |
clean:
|
23 |
rm -f *.o $(PROGS)
|
31 |
rm -f *.o $(PROGS)
|
24 |
|
32 |
|