Switch to unified view

a/src/aspell/Makefile b/src/aspell/Makefile
...
...
2
include $(depth)/mk/sysconf
2
include $(depth)/mk/sysconf
3
3
4
PROGS = rclaspell
4
PROGS = rclaspell
5
SRCS = rclaspell.cpp
5
SRCS = rclaspell.cpp
6
6
7
all: depend $(BIGLIB) $(PROGS)
7
all: depend $(PROGS) librecoll
8
8
9
RCLASPELL_OBJS= trrclaspell.o  $(BIGLIB) 
9
RCLASPELL_OBJS= trrclaspell.o 
10
rclaspell : $(RCLASPELL_OBJS)
10
rclaspell : $(RCLASPELL_OBJS)
11
    $(CXX) $(ALL_CXXFLAGS) -o rclaspell $(RCLASPELL_OBJS) \
11
    $(CXX) $(ALL_CXXFLAGS) -o rclaspell $(RCLASPELL_OBJS) \
12
         $(LIBXAPIAN) $(LIBICONV)
12
          $(LIBRECOLL)  $(LIBXAPIAN) $(LIBICONV)
13
trrclaspell.o : rclaspell.cpp
13
trrclaspell.o : rclaspell.cpp
14
    $(CXX) $(ALL_CXXFLAGS) -DTEST_RCLASPELL -c -o trrclaspell.o \
14
    $(CXX) $(ALL_CXXFLAGS) -DTEST_RCLASPELL -c -o trrclaspell.o \
15
           rclaspell.cpp
15
           rclaspell.cpp
16
16
17
$(BIGLIB): force
17
include $(depth)/mk/commontargets
18
  cd $(depth)/lib;$(MAKE)
19
force:
20
21
depend: alldeps.stamp
22
alldeps.stamp : $(SRCS)
23
  $(CXX) -M $(ALL_CXXFLAGS) $(SRCS) > alldeps
24
  touch alldeps.stamp
25
26
clean:
27
  cp /dev/null alldeps
28
  rm -f alldeps.stamp
29
  rm -f *.o $(PROGS)
30
18
31
include alldeps
19
include alldeps