Switch to unified view

a/src/internfile/Makefile b/src/internfile/Makefile
1
depth = ..
2
include $(depth)/mk/sysconf
3
4
# Only test executables get build in here
5
PROGS = mh_mbox internfile
1
PROGS = mh_mbox internfile
6
2
7
all: librecoll $(PROGS) 
3
all: $(PROGS) 
8
4
9
INTERNFILE_OBJS= trinternfile.o  $(BIGLIB) 
5
INTERNFILE_OBJS= trinternfile.o
10
internfile : $(INTERNFILE_OBJS) 
6
internfile : $(INTERNFILE_OBJS) 
11
    $(CXX) $(ALL_CXXFLAGS) -o internfile $(INTERNFILE_OBJS) \
7
    $(CXX) $(ALL_CXXFLAGS) -o internfile $(INTERNFILE_OBJS) $(LIBRECOLL)
12
         $(LIBRECOLL) $(LIBICONV) $(LIBSYS)
13
trinternfile.o : internfile.cpp 
8
trinternfile.o : internfile.cpp 
14
    $(CXX) $(ALL_CXXFLAGS) -DTEST_INTERNFILE -c -o trinternfile.o \
9
    $(CXX) $(ALL_CXXFLAGS) -DTEST_INTERNFILE -c -o trinternfile.o \
15
           internfile.cpp
10
           internfile.cpp
16
11
17
MH_MBOX_OBJS= trmh_mbox.o  $(BIGLIB) 
12
MH_MBOX_OBJS= trmh_mbox.o  $(BIGLIB) 
18
mh_mbox : $(MH_MBOX_OBJS) 
13
mh_mbox : $(MH_MBOX_OBJS) 
19
    $(CXX) $(ALL_CXXFLAGS) -o mh_mbox $(MH_MBOX_OBJS) \
14
    $(CXX) $(ALL_CXXFLAGS) -o mh_mbox $(MH_MBOX_OBJS) $(LIBRECOLL)
20
         $(LIBRECOLL) $(LIBICONV) $(LIBSYS)
21
trmh_mbox.o : mh_mbox.cpp 
15
trmh_mbox.o : mh_mbox.cpp 
22
    $(CXX) $(ALL_CXXFLAGS) -DTEST_MH_MBOX -c -o trmh_mbox.o \
16
    $(CXX) $(ALL_CXXFLAGS) -DTEST_MH_MBOX -c -o trmh_mbox.o \
23
           mh_mbox.cpp
17
           mh_mbox.cpp
24
18
25
include $(depth)/mk/commontargets
19
include ../utils/utmkdefs.mk
20