Commit 6952089a 6952089a21b8f770c12ea190e88f3f687c5e24fd by Sergey Poznyakoff

Build c++ examples

1 parent 1d09387b
1 ## Process this file with GNU Automake to create Makefile.in 1 ## Process this file with GNU Automake to create Makefile.in
2 2 ##
3 ## Copyright (C) 2004 Free Software Foundation, Inc. 3 ## Copyright (C) 2004, 2006 Free Software Foundation, Inc.
4 ## 4 ##
5 ## GNU Mailutils is free software; you can redistribute it and/or 5 ## GNU Mailutils is free software; you can redistribute it and/or
6 ## modify it under the terms of the GNU General Public License as 6 ## modify it under the terms of the GNU General Public License as
...@@ -17,3 +17,45 @@ ...@@ -17,3 +17,45 @@
17 ## Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 17 ## Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA
18 ## 02110-1301 USA 18 ## 02110-1301 USA
19 19
20 CXX_EXAMPLES = \
21 addr\
22 http\
23 iconv\
24 listop\
25 mailcap\
26 murun\
27 sfrom\
28 url-parse
29
30 EXTRA_PROGRAMS=$(CXX_EXAMPLES)
31 noinst_PROGRAMS = @MU_BUILT_CXX_EXAMPLES@
32
33 INCLUDES = @MU_COMMON_INCLUDES@ @INTLINCS@
34
35 AM_LDFLAGS = \
36 ../../lib/libmuaux.la\
37 ../../libmu_cpp/libmu_cpp.la\
38 ${MU_LIB_MAILUTILS}\
39 @MU_COMMON_LIBRARIES@
40
41 addr_SOURCES = addr.cc
42 http_SOURCES = http.cc
43 iconv_SOURCES = iconv.cc
44 listop_SOURCES = listop.cc
45 mailcap_SOURCES = mailcap.cc
46 murun_SOURCES = murun.cc
47 sfrom_SOURCES = sfrom.cc
48 url_parse_SOURCES = url-parse.cc
49
50 LDADD =\
51 ../../lib/libmuaux.la\
52 ../../libmu_cpp/libmu_cpp.la\
53 ${MU_LIB_MBOX}\
54 ${MU_LIB_IMAP}\
55 ${MU_LIB_POP}\
56 ${MU_LIB_NNTP}\
57 ${MU_LIB_MH}\
58 ${MU_LIB_MAILDIR}\
59 ${MU_LIB_AUTH}\
60 @MU_AUTHLIBS@\
61 ${MU_LIB_MAILUTILS}
......