|
a/src/bincimapmime/Makefile |
|
b/src/bincimapmime/Makefile |
1 |
# @(#$Id: Makefile,v 1.6 2006-01-19 12:01:42 dockes Exp $ (C) 2005 J.F.Dockes
|
|
|
2 |
|
|
|
3 |
depth = ..
|
|
|
4 |
include $(depth)/mk/sysconf
|
|
|
5 |
|
|
|
6 |
LIBS = libmime.a
|
|
|
7 |
PROGS = trbinc
|
1 |
PROGS = trbinc
|
8 |
|
2 |
all: $(PROGS)
|
9 |
all: depend $(LIBS)
|
|
|
10 |
|
|
|
11 |
SRCS = mime-parsefull.cc mime-parseonlyheader.cc \
|
|
|
12 |
mime-printbody.cc mime.cc \
|
|
|
13 |
convert.cc iodevice.cc iofactory.cc
|
|
|
14 |
|
|
|
15 |
OBJS = mime-parsefull.o mime-parseonlyheader.o \
|
|
|
16 |
mime-printbody.o mime.o \
|
|
|
17 |
convert.o iodevice.o iofactory.o
|
|
|
18 |
|
|
|
19 |
libmime.a : $(OBJS)
|
|
|
20 |
$(AR) ru libmime.a $(OBJS)
|
|
|
21 |
|
|
|
22 |
.cc.o:
|
|
|
23 |
$(CXX) $(ALL_CXXFLAGS) -c $<
|
|
|
24 |
|
3 |
|
25 |
TRBINCOBJS = trbinc.o
|
4 |
TRBINCOBJS = trbinc.o
|
26 |
trbinc: trbinc.o
|
5 |
trbinc: trbinc.o
|
27 |
$(CXX) -o trbinc trbinc.o libmime.a
|
6 |
$(CXX) -o trbinc trbinc.o $(LIBRECOLL)
|
28 |
|
7 |
|
29 |
include $(depth)/mk/commontargets
|
8 |
trbinc.o: trbinc.cc
|
|
|
9 |
$(CXX) $(ALL_CXXFLAGS) -c -o trbinc.o trbinc.cc
|
30 |
|
10 |
|
31 |
include alldeps
|
11 |
include ../utils/utmkdefs.mk
|