aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/Makefile.am
blob: 639d22ecbb81ca5808f0bc181fee8ae429c30366 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
AM_CPPFLAGS =                                           \
    -I.                                             \
    -I$(top_srcdir)                                 \
    -DDATADIR=\""$(datadir)"\"                  \
    $(LIBEMPATHY_CFLAGS)                \
    $(WARN_CFLAGS)

BUILT_SOURCES =                     \
    empathy-marshal.h               \
    empathy-marshal.c               \
    empathy-enum-types.h                \
    empathy-enum-types.c                \
    empathy-filter-glue.h               \
    empathy-chandler-glue.h

lib_LTLIBRARIES = libempathy.la

libempathy_la_SOURCES =                 \
    empathy-conf.c                  \
    empathy-avatar.c                \
    empathy-time.c                  \
    empathy-presence.c              \
    empathy-debug.c                 \
    empathy-utils.c                 \
    empathy-message.c               \
    empathy-chatroom-manager.c          \
    empathy-chatroom.c              \
    empathy-contact.c               \
    empathy-contact-list.c              \
    empathy-contact-manager.c           \
    empathy-contact-factory.c           \
    empathy-tp-group.c              \
    empathy-tp-contact-list.c           \
    empathy-tp-chat.c               \
    empathy-tp-chatroom.c               \
    empathy-tp-roomlist.c               \
    empathy-chandler.c              \
    empathy-filter.c                \
    empathy-idle.c                  \
    empathy-log-manager.c

# do not distribute generated files
nodist_libempathy_la_SOURCES =\
    $(BUILT_SOURCES)

libempathy_la_LIBADD =      \
    $(LIBEMPATHY_LIBS)

libempathy_la_LDFLAGS =     \
    -version-info ${LIBEMPATHY_CURRENT}:${LIBEMPATHY_REVISION}:${LIBEMPATHY_AGE}

libempathy_headers =                \
    empathy-conf.h              \
    empathy-avatar.h            \
    empathy-time.h              \
    empathy-presence.h          \
    empathy-debug.h             \
    empathy-utils.h             \
    empathy-message.h           \
    empathy-chatroom-manager.h      \
    empathy-chatroom.h          \
    empathy-contact.h           \
    empathy-contact-list.h          \
    empathy-contact-manager.h       \
    empathy-contact-factory.h       \
    empathy-tp-group.h          \
    empathy-tp-contact-list.h       \
    empathy-tp-chat.h           \
    empathy-tp-chatroom.h           \
    empathy-tp-roomlist.h           \
    empathy-chandler.h          \
    empathy-filter.h            \
    empathy-idle.h              \
    empathy-log-manager.h

libempathy_includedir = $(includedir)/libempathy/
libempathy_include_HEADERS =            \
    $(libempathy_headers)           \
    empathy-enum-types.h

%-marshal.h: %-marshal.list Makefile.am
    $(GLIB_GENMARSHAL) --header --prefix=$(subst -,_,$*)_marshal $< > $*-marshal.h

%-marshal.c: %-marshal.list Makefile.am
    echo "#include \"empathy-marshal.h\"" > $@ && \
    $(GLIB_GENMARSHAL) --body --prefix=$(subst -,_,$*)_marshal $< >> $*-marshal.c

empathy-chandler-glue.h: empathy-chandler.xml
    $(LIBTOOL) --mode=execute $(DBUS_BINDING_TOOL) --prefix=empathy_chandler --mode=glib-server --output=$@ $<
empathy-filter-glue.h: empathy-filter.xml
    $(LIBTOOL) --mode=execute $(DBUS_BINDING_TOOL) --prefix=empathy_filter --mode=glib-server --output=$@ $<

empathy-enum-types.h: stamp-empathy-enum-types.h
    @true
stamp-empathy-enum-types.h: Makefile $(libempathy_headers)
    (cd $(srcdir) \
    && glib-mkenums \
            --fhead "#ifndef __LIBEMPATHY_ENUM_TYPES_H__\n" \
            --fhead "#define __LIBEMPATHY_ENUM_TYPES_H__ 1\n\n" \
            --fhead "#include <glib-object.h>\n\n" \
            --fhead "G_BEGIN_DECLS\n\n" \
            --ftail "G_END_DECLS\n\n" \
            --ftail "#endif /* __LIBEMPATHY_ENUM_TYPES_H__ */\n" \
            --fprod "#include <libempathy/@filename@>\n" \
            --eprod "#define EMPATHY_TYPE_@ENUMSHORT@ @enum_name@_get_type()\n" \
            --eprod "GType @enum_name@_get_type (void);\n" \
        $(libempathy_headers) ) > xgen-gth \
    && (cmp -s xgen-gth empathy-enum-type.h || cp xgen-gth empathy-enum-types.h) \
    && rm -f xgen-gth \
    && echo timestamp > $(@F)

empathy-enum-types.c: Makefile $(libempathy_headers)
    (cd $(srcdir) \
    && glib-mkenums \
            --fhead "#include <config.h>\n" \
            --fhead "#include <glib-object.h>\n" \
            --fhead "#include \"empathy-enum-types.h\"\n\n" \
            --fprod "\n/* enumerations from \"@filename@\" */" \
            --vhead "static const G@Type@Value _@enum_name@_values[] = {" \
            --vprod "  { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
            --vtail "  { 0, NULL, NULL }\n};\n\n" \
            --vtail "GType\n@enum_name@_get_type (void)\n{\n" \
            --vtail "  static GType type = 0;\n\n" \
            --vtail "  if (!type)\n" \
            --vtail "    type = g_@type@_register_static (\"@EnumName@\", _@enum_name@_values);\n\n" \
            --vtail "  return type;\n}\n\n" \
        $(libempathy_headers) ) > xgen-gtc \
    && cp xgen-gtc $(@F) \
    && rm -f xgen-gtc

dtddir = $(datadir)/empathy
dtd_DATA =                  \
    empathy-chatroom-manager.dtd

stylesheetdir = $(datadir)/empathy
stylesheet_DATA =       \
    empathy-log-manager.xsl

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libempathy.pc

EXTRA_DIST =            \
    empathy-marshal.list    \
    empathy-chandler.xml    \
    empathy-filter.xml  \
    $(stylesheet_DATA)  \
    $(dtd_DATA)

CLEANFILES =                \
    $(BUILT_SOURCES)        \
    stamp-empathy-enum-types.h