a/src/common/Makefile b/src/common/Makefile
1
# @(#$Id: Makefile,v 1.8 2006-01-06 13:18:17 dockes Exp $  (C) 2005 J.F.Dockes
1
2
2
# Only test progs in there
3
include ../mk/sysconf
4
5
# Only test executables get build in here
3
PROGS = internfile unacpp textsplit
6
PROGS = internfile unacpp textsplit
4
7
5
all: $(BIGLIB) $(PROGS) 
8
all: $(BIGLIB) $(PROGS) 
6
9
7
$(BIGLIB):
10
$(BIGLIB):
...
...
27
           $(LIBICONV) $(LIBSYS)
30
           $(LIBICONV) $(LIBSYS)
28
trinternfile.o : internfile.cpp 
31
trinternfile.o : internfile.cpp 
29
    $(CXX) $(CXXFLAGS) -DTEST_INTERNFILE -c -o trinternfile.o \
32
    $(CXX) $(CXXFLAGS) -DTEST_INTERNFILE -c -o trinternfile.o \
30
           internfile.cpp
33
           internfile.cpp
31
34
32
clean::
35
clean:
33
    rm -f *.o $(PROGS)
36
    rm -f *.o $(PROGS)
34
37
35
include ../mk/sysconf
36