|
a/src/aspell/Makefile |
|
b/src/aspell/Makefile |
1 |
depth = ..
|
|
|
2 |
include $(depth)/mk/sysconf
|
|
|
3 |
|
|
|
4 |
PROGS = rclaspell
|
1 |
PROGS = rclaspell
|
5 |
SRCS = rclaspell.cpp
|
2 |
all: $(PROGS)
|
6 |
|
|
|
7 |
all: depend $(PROGS) librecoll
|
|
|
8 |
|
3 |
|
9 |
RCLASPELL_OBJS= trrclaspell.o
|
4 |
RCLASPELL_OBJS= trrclaspell.o
|
10 |
rclaspell : $(RCLASPELL_OBJS)
|
5 |
rclaspell : $(RCLASPELL_OBJS)
|
11 |
$(CXX) $(ALL_CXXFLAGS) -o rclaspell $(RCLASPELL_OBJS) \
|
6 |
$(CXX) $(ALL_CXXFLAGS) -o rclaspell $(RCLASPELL_OBJS) \
|
12 |
$(LIBRECOLL) $(LIBXAPIAN) $(LIBICONV)
|
7 |
$(LIBRECOLL)
|
13 |
trrclaspell.o : rclaspell.cpp
|
8 |
trrclaspell.o : rclaspell.cpp
|
14 |
$(CXX) $(ALL_CXXFLAGS) -DTEST_RCLASPELL -c -o trrclaspell.o \
|
9 |
$(CXX) $(ALL_CXXFLAGS) -DTEST_RCLASPELL -c -o trrclaspell.o \
|
15 |
rclaspell.cpp
|
10 |
rclaspell.cpp
|
16 |
|
11 |
|
17 |
include $(depth)/mk/commontargets
|
12 |
include ../utils/utmkdefs.mk
|
18 |
|
|
|
19 |
include alldeps
|
|
|