recoll/src/aspell/Makefile
2015-08-05 09:01:11 +02:00

13 lines
319 B
Makefile

PROGS = rclaspell
all: $(PROGS)
RCLASPELL_OBJS= trrclaspell.o
rclaspell : $(RCLASPELL_OBJS)
$(CXX) $(ALL_CXXFLAGS) -o rclaspell $(RCLASPELL_OBJS) \
$(LIBRECOLL)
trrclaspell.o : rclaspell.cpp
$(CXX) $(ALL_CXXFLAGS) -DTEST_RCLASPELL -c -o trrclaspell.o \
rclaspell.cpp
include ../utils/utmkdefs.mk