|
a/src/common/Makefile |
|
b/src/common/Makefile |
1 |
# @(#$Id: Makefile,v 1.12 2006-09-21 05:57:45 dockes Exp $ (C) 2005 J.F.Dockes
|
1 |
# @(#$Id: Makefile,v 1.13 2006-11-15 14:57:53 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 rclconfig
|
6 |
PROGS = internfile unacpp textsplit rclconfig
|
|
... |
|
... |
23 |
$(CXX) $(ALL_CXXFLAGS) -o textsplit $(TEXTSPLIT_OBJS)
|
23 |
$(CXX) $(ALL_CXXFLAGS) -o textsplit $(TEXTSPLIT_OBJS)
|
24 |
trtextsplit.o : textsplit.cpp
|
24 |
trtextsplit.o : textsplit.cpp
|
25 |
$(CXX) $(ALL_CXXFLAGS) -DTEST_TEXTSPLIT -c -o trtextsplit.o \
|
25 |
$(CXX) $(ALL_CXXFLAGS) -DTEST_TEXTSPLIT -c -o trtextsplit.o \
|
26 |
textsplit.cpp
|
26 |
textsplit.cpp
|
27 |
|
27 |
|
28 |
INTERNFILE_OBJS= trinternfile.o $(BIGLIB) $(MIMELIB)
|
|
|
29 |
internfile : $(INTERNFILE_OBJS)
|
|
|
30 |
$(CXX) $(ALL_CXXFLAGS) -o internfile $(INTERNFILE_OBJS) \
|
|
|
31 |
$(LIBICONV) $(LIBSYS)
|
|
|
32 |
trinternfile.o : internfile.cpp
|
|
|
33 |
$(CXX) $(ALL_CXXFLAGS) -DTEST_INTERNFILE -c -o trinternfile.o \
|
|
|
34 |
internfile.cpp
|
|
|
35 |
|
|
|
36 |
RCLCONFIG_OBJS= trrclconfig.o $(BIGLIB) $(MIMELIB)
|
28 |
RCLCONFIG_OBJS= trrclconfig.o $(BIGLIB) $(MIMELIB)
|
37 |
rclconfig : $(RCLCONFIG_OBJS)
|
29 |
rclconfig : $(RCLCONFIG_OBJS)
|
38 |
$(CXX) $(ALL_CXXFLAGS) -o rclconfig $(RCLCONFIG_OBJS) \
|
30 |
$(CXX) $(ALL_CXXFLAGS) -o rclconfig $(RCLCONFIG_OBJS) \
|
39 |
$(LIBICONV) $(LIBSYS)
|
31 |
$(LIBICONV) $(LIBSYS)
|
40 |
trrclconfig.o : rclconfig.cpp
|
32 |
trrclconfig.o : rclconfig.cpp
|