--- a/src/aspell/Makefile
+++ b/src/aspell/Makefile
@@ -4,28 +4,16 @@
PROGS = rclaspell
SRCS = rclaspell.cpp
-all: depend $(BIGLIB) $(PROGS)
+all: depend $(PROGS) librecoll
-RCLASPELL_OBJS= trrclaspell.o $(BIGLIB)
+RCLASPELL_OBJS= trrclaspell.o
rclaspell : $(RCLASPELL_OBJS)
$(CXX) $(ALL_CXXFLAGS) -o rclaspell $(RCLASPELL_OBJS) \
- $(LIBXAPIAN) $(LIBICONV)
+ $(LIBRECOLL) $(LIBXAPIAN) $(LIBICONV)
trrclaspell.o : rclaspell.cpp
$(CXX) $(ALL_CXXFLAGS) -DTEST_RCLASPELL -c -o trrclaspell.o \
rclaspell.cpp
-$(BIGLIB): force
- cd $(depth)/lib;$(MAKE)
-force:
-
-depend: alldeps.stamp
-alldeps.stamp : $(SRCS)
- $(CXX) -M $(ALL_CXXFLAGS) $(SRCS) > alldeps
- touch alldeps.stamp
-
-clean:
- cp /dev/null alldeps
- rm -f alldeps.stamp
- rm -f *.o $(PROGS)
+include $(depth)/mk/commontargets
include alldeps