root / libsylph / Makefile.am @ 2164
History | View | Annotate | Download (1.7 kB)
| 1 | |
|---|---|
| 2 | AM_CPPFLAGS = \ |
| 3 | -DG_LOG_DOMAIN=\"LibSylph\" \ |
| 4 | -DSYSCONFDIR=\""$(sysconfdir)"\" \ |
| 5 | -DLOCALEDIR=\""$(localedir)"\" |
| 6 | |
| 7 | INCLUDES = $(GLIB_CFLAGS) -I$(top_srcdir) -I$(includedir) |
| 8 | |
| 9 | lib_LTLIBRARIES = libsylph-0.la |
| 10 | #noinst_LTLIBRARIES = libsylph.la |
| 11 | |
| 12 | libsylph_0_la_SOURCES = \ |
| 13 | account.c \ |
| 14 | base64.c \ |
| 15 | codeconv.c \ |
| 16 | customheader.c \ |
| 17 | displayheader.c \ |
| 18 | filter.c \ |
| 19 | folder.c \ |
| 20 | html.c \ |
| 21 | imap.c \ |
| 22 | mbox.c \ |
| 23 | md5.c \ |
| 24 | md5_hmac.c \ |
| 25 | mh.c \ |
| 26 | news.c \ |
| 27 | nntp.c \ |
| 28 | pop.c \ |
| 29 | prefs.c \ |
| 30 | prefs_account.c \ |
| 31 | prefs_common.c \ |
| 32 | procheader.c \ |
| 33 | procmime.c \ |
| 34 | procmsg.c \ |
| 35 | quoted-printable.c \ |
| 36 | recv.c \ |
| 37 | session.c \ |
| 38 | smtp.c \ |
| 39 | socket.c \ |
| 40 | ssl.c \ |
| 41 | stringtable.c \ |
| 42 | sylmain.c \ |
| 43 | unmime.c \ |
| 44 | utils.c \ |
| 45 | uuencode.c \ |
| 46 | virtual.c \ |
| 47 | xml.c \ |
| 48 | syl-marshal.c |
| 49 | |
| 50 | libsylph_0includedir=$(includedir)/sylpheed/sylph |
| 51 | libsylph_0include_HEADERS = \ |
| 52 | defs.h \ |
| 53 | enums.h \ |
| 54 | account.h \ |
| 55 | base64.h \ |
| 56 | codeconv.h \ |
| 57 | customheader.h \ |
| 58 | displayheader.h \ |
| 59 | filter.h \ |
| 60 | folder.h \ |
| 61 | html.h \ |
| 62 | imap.h \ |
| 63 | mbox.h \ |
| 64 | md5.h \ |
| 65 | md5_hmac.h \ |
| 66 | mh.h \ |
| 67 | news.h \ |
| 68 | nntp.h \ |
| 69 | pop.h \ |
| 70 | prefs.h \ |
| 71 | prefs_account.h \ |
| 72 | prefs_common.h \ |
| 73 | procheader.h \ |
| 74 | procmime.h \ |
| 75 | procmsg.h \ |
| 76 | quoted-printable.h \ |
| 77 | recv.h \ |
| 78 | session.h \ |
| 79 | smtp.h \ |
| 80 | socket.h \ |
| 81 | ssl.h \ |
| 82 | stringtable.h \ |
| 83 | sylmain.h \ |
| 84 | unmime.h \ |
| 85 | utils.h \ |
| 86 | uuencode.h \ |
| 87 | virtual.h \ |
| 88 | xml.h \ |
| 89 | syl-marshal.h |
| 90 | |
| 91 | BUILT_SOURCES = \ |
| 92 | syl-marshal.c \ |
| 93 | syl-marshal.h |
| 94 | |
| 95 | EXTRA_DIST = \ |
| 96 | syl-marshal.list \ |
| 97 | libsylph-0.def |
| 98 | |
| 99 | if NATIVE_WIN32 |
| 100 | no_undefined = -no-undefined |
| 101 | export_symbols = -export-symbols libsylph-0.def |
| 102 | endif |
| 103 | |
| 104 | libsylph_0_la_LDFLAGS = \ |
| 105 | -export-dynamic $(no_undefined) $(export_symbols) |
| 106 | |
| 107 | libsylph_0_la_LIBADD = $(GLIB_LIBS) |
| 108 | |
| 109 | syl-marshal.h: syl-marshal.list |
| 110 | $(GLIB_GENMARSHAL) $< --header --prefix=syl_marshal > $@ |
| 111 | |
| 112 | syl-marshal.c: syl-marshal.list |
| 113 | $(GLIB_GENMARSHAL) $< --body --prefix=syl_marshal > $@ |