Switch to unified view

a/src/utils/Makefile b/src/utils/Makefile
1
depth = ..
1
depth = ..
2
include $(depth)/mk/sysconf
2
include $(depth)/mk/sysconf
3
3
4
PROGS = trconftree wipedir smallut trfstreewalk trpathut \
4
PROGS = trfileudi trconftree wipedir smallut trfstreewalk trpathut \
5
      transcode trbase64 \
5
      transcode trbase64 \
6
      trmimeparse trexecmd utf8iter idfile
6
      trmimeparse trexecmd utf8iter idfile
7
7
8
all: $(PROGS) $(BIGLIB)
8
all: $(PROGS) $(BIGLIB)
9
9
...
...
21
PATHUT_OBJS= trpathut.o  $(BIGLIB)
21
PATHUT_OBJS= trpathut.o  $(BIGLIB)
22
trpathut : $(PATHUT_OBJS) 
22
trpathut : $(PATHUT_OBJS) 
23
    $(CXX) $(ALL_CXXFLAGS) -o trpathut $(PATHUT_OBJS)
23
    $(CXX) $(ALL_CXXFLAGS) -o trpathut $(PATHUT_OBJS)
24
trpathut.o : pathut.cpp pathut.h
24
trpathut.o : pathut.cpp pathut.h
25
    $(CXX) -o trpathut.o -c $(ALL_CXXFLAGS) -DTEST_PATHUT pathut.cpp
25
    $(CXX) -o trpathut.o -c $(ALL_CXXFLAGS) -DTEST_PATHUT pathut.cpp
26
27
FILEUDI_OBJS= trfileudi.o  $(BIGLIB)
28
trfileudi : $(FILEUDI_OBJS) 
29
  $(CXX) $(ALL_CXXFLAGS) -o trfileudi $(FILEUDI_OBJS)
30
trfileudi.o : fileudi.cpp fileudi.h
31
  $(CXX) -o trfileudi.o -c $(ALL_CXXFLAGS) -DTEST_FILEUDI fileudi.cpp
26
32
27
EXECMD_OBJS= trexecmd.o $(BIGLIB)
33
EXECMD_OBJS= trexecmd.o $(BIGLIB)
28
trexecmd : $(EXECMD_OBJS)
34
trexecmd : $(EXECMD_OBJS)
29
    $(CXX) $(ALL_CXXFLAGS) -o trexecmd $(EXECMD_OBJS)
35
    $(CXX) $(ALL_CXXFLAGS) -o trexecmd $(EXECMD_OBJS)
30
trexecmd.o : execmd.cpp execmd.h
36
trexecmd.o : execmd.cpp execmd.h