|
a/src/common/Makefile |
|
b/src/common/Makefile |
1 |
# @(#$Id: Makefile,v 1.9 2006-01-19 12:01:42 dockes Exp $ (C) 2005 J.F.Dockes
|
1 |
# @(#$Id: Makefile,v 1.10 2006-03-29 13:08:08 dockes Exp $ (C) 2005 J.F.Dockes
|
2 |
depth = ..
|
2 |
depth = ..
|
3 |
include $(depth)/mk/sysconf
|
3 |
include $(depth)/mk/sysconf
|
4 |
|
4 |
|
5 |
# Only test executables get build in here
|
5 |
# Only test executables get build in here
|
6 |
PROGS = internfile unacpp textsplit
|
6 |
PROGS = internfile unacpp textsplit
|
|
... |
|
... |
30 |
$(LIBICONV) $(LIBSYS)
|
30 |
$(LIBICONV) $(LIBSYS)
|
31 |
trinternfile.o : internfile.cpp
|
31 |
trinternfile.o : internfile.cpp
|
32 |
$(CXX) $(ALL_CXXFLAGS) -DTEST_INTERNFILE -c -o trinternfile.o \
|
32 |
$(CXX) $(ALL_CXXFLAGS) -DTEST_INTERNFILE -c -o trinternfile.o \
|
33 |
internfile.cpp
|
33 |
internfile.cpp
|
34 |
|
34 |
|
|
|
35 |
RCLCONFIG_OBJS= trrclconfig.o $(BIGLIB) $(MIMELIB)
|
|
|
36 |
rclconfig : $(RCLCONFIG_OBJS)
|
|
|
37 |
$(CXX) $(ALL_CXXFLAGS) -o rclconfig $(RCLCONFIG_OBJS) \
|
|
|
38 |
$(LIBICONV) $(LIBSYS)
|
|
|
39 |
trrclconfig.o : rclconfig.cpp
|
|
|
40 |
$(CXX) $(ALL_CXXFLAGS) -DTEST_RCLCONFIG -c -o trrclconfig.o \
|
|
|
41 |
rclconfig.cpp
|
|
|
42 |
|
35 |
clean:
|
43 |
clean:
|
36 |
rm -f *.o $(PROGS)
|
44 |
rm -f *.o $(PROGS)
|
37 |
|
45 |
|