summaryrefslogtreecommitdiff
path: root/libsylph/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'libsylph/Makefile.am')
-rw-r--r--libsylph/Makefile.am118
1 files changed, 118 insertions, 0 deletions
diff --git a/libsylph/Makefile.am b/libsylph/Makefile.am
new file mode 100644
index 0000000..8f2b76b
--- /dev/null
+++ b/libsylph/Makefile.am
@@ -0,0 +1,118 @@
1
2AM_CPPFLAGS = \
3 -DG_LOG_DOMAIN=\"LibSylph\" \
4 -DSYSCONFDIR=\""$(sysconfdir)"\" \
5 -DLOCALEDIR=\""$(localedir)"\"
6
7INCLUDES = -I$(top_srcdir) $(GLIB_CFLAGS) $(LIBSYLPH_CFLAGS)
8
9lib_LTLIBRARIES = libsylph-0.la
10#noinst_LTLIBRARIES = libsylph.la
11
12libsylph_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 socks.c \
41 ssl.c \
42 ssl_hostname_validation.c \
43 stringtable.c \
44 sylmain.c \
45 unmime.c \
46 utils.c \
47 uuencode.c \
48 virtual.c \
49 xml.c \
50 syl-marshal.c
51
52libsylph_0includedir=$(includedir)/sylpheed/sylph
53libsylph_0include_HEADERS = \
54 defs.h \
55 enums.h \
56 account.h \
57 base64.h \
58 codeconv.h \
59 customheader.h \
60 displayheader.h \
61 filter.h \
62 folder.h \
63 html.h \
64 imap.h \
65 mbox.h \
66 md5.h \
67 md5_hmac.h \
68 mh.h \
69 news.h \
70 nntp.h \
71 pop.h \
72 prefs.h \
73 prefs_account.h \
74 prefs_common.h \
75 procheader.h \
76 procmime.h \
77 procmsg.h \
78 quoted-printable.h \
79 recv.h \
80 session.h \
81 smtp.h \
82 socket.h \
83 socks.h \
84 ssl.h \
85 ssl_hostname_validation.h \
86 stringtable.h \
87 sylmain.h \
88 unmime.h \
89 utils.h \
90 uuencode.h \
91 virtual.h \
92 xml.h \
93 syl-marshal.h
94
95BUILT_SOURCES = \
96 syl-marshal.c \
97 syl-marshal.h
98
99EXTRA_DIST = \
100 syl-marshal.list \
101 libsylph-0.def
102
103if NATIVE_WIN32
104no_undefined = -no-undefined
105export_symbols = -export-symbols libsylph-0.def
106endif
107
108libsylph_0_la_LDFLAGS = \
109 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
110 -export-dynamic $(no_undefined) $(export_symbols)
111
112libsylph_0_la_LIBADD = $(GLIB_LIBS) $(LIBICONV) $(LIBSYLPH_LIBS)
113
114syl-marshal.h: syl-marshal.list
115 $(GLIB_GENMARSHAL) $< --header --prefix=syl_marshal > $@
116
117syl-marshal.c: syl-marshal.list
118 $(GLIB_GENMARSHAL) $< --body --prefix=syl_marshal > $@