Switch to unified view

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