blob: ca0df9206371d8767b992d0052e5effdc8583d23 (
plain) (
tree)
|
|
include $(top_srcdir)/tools/flymake.mk
AM_CPPFLAGS = \
$(ERROR_CFLAGS) \
-I. \
-I$(top_srcdir) \
-I$(top_builddir) \
-DDATADIR=\""$(datadir)"\" \
-DLOCALEDIR=\""$(datadir)/locale"\" \
-DG_LOG_DOMAIN=\"empathy\" \
$(EMPATHY_CFLAGS) \
$(GEOCLUE_CFLAGS) \
$(NETWORK_MANAGER_CFLAGS) \
$(CONNMAN_CFLAGS) \
$(WARN_CFLAGS) \
$(DISABLE_DEPRECATED)
BUILT_SOURCES = \
empathy-marshal.h \
empathy-marshal.c \
empathy-marshal.list \
empathy-enum-types.h \
empathy-enum-types.c
noinst_LTLIBRARIES = libempathy.la
libempathy_headers = \
empathy-account-settings.h \
empathy-call-factory.h \
empathy-call-handler.h \
empathy-chatroom-manager.h \
empathy-chatroom.h \
empathy-connection-managers.h \
empathy-connectivity.h \
empathy-contact-groups.h \
empathy-contact-list.h \
empathy-contact-manager.h \
empathy-contact.h \
empathy-debug.h \
empathy-dispatch-operation.h \
empathy-dispatcher.h \
empathy-ft-factory.h \
empathy-ft-handler.h \
empathy-gsettings.h \
empathy-handler.h \
empathy-idle.h \
empathy-individual-manager.h \
empathy-irc-network-manager.h \
empathy-irc-network.h \
empathy-irc-server.h \
empathy-location.h \
empathy-message.h \
empathy-status-presets.h \
empathy-time.h \
empathy-tp-call.h \
empathy-tp-chat.h \
empathy-tp-contact-factory.h \
empathy-tp-contact-list.h \
empathy-tp-file.h \
empathy-tp-roomlist.h \
empathy-types.h \
empathy-utils.h
libempathy_la_SOURCES = \
$(libempathy_headers) \
empathy-account-settings.c \
empathy-call-factory.c \
empathy-call-handler.c \
empathy-chatroom-manager.c \
empathy-chatroom.c \
empathy-connection-managers.c \
empathy-connectivity.c \
empathy-contact-groups.c \
empathy-contact-list.c \
empathy-contact-manager.c \
empathy-contact.c \
empathy-debug.c \
empathy-dispatch-operation.c \
empathy-dispatcher.c \
empathy-ft-factory.c \
empathy-ft-handler.c \
empathy-handler.c \
empathy-idle.c \
empathy-individual-manager.c \
empathy-irc-network-manager.c \
empathy-irc-network.c \
empathy-irc-server.c \
empathy-message.c \
empathy-status-presets.c \
empathy-time.c \
empathy-tp-call.c \
empathy-tp-chat.c \
empathy-tp-contact-factory.c \
empathy-tp-contact-list.c \
empathy-tp-file.c \
empathy-tp-roomlist.c \
empathy-utils.c
# do not distribute generated files
nodist_libempathy_la_SOURCES =\
$(BUILT_SOURCES)
libempathy_la_LIBADD = \
$(top_builddir)/extensions/libemp-extensions.la \
$(EMPATHY_LIBS) \
$(GEOCLUE_LIBS) \
$(NETWORK_MANAGER_LIBS) \
$(CONNMAN_LIBS)
check_c_sources = \
$(libempathy_la_SOURCES) \
$(libempathy_headers)
include $(top_srcdir)/tools/check-coding-style.mk
check-local: check-coding-style
empathy-marshal.list: $(libempathy_la_SOURCES) Makefile.am
$(AM_V_GEN)( cd $(srcdir) && \
sed -n -e 's/.*empathy_marshal_\([[:upper:][:digit:]]*__[[:upper:][:digit:]_]*\).*/\1/p' \
$(libempathy_la_SOURCES) ) \
| sed -e 's/__/:/' -e 'y/_/,/' | sort -u > $@.tmp
@if cmp -s $@.tmp $@; then \
rm $@.tmp; \
else \
mv $@.tmp $@; \
fi
%-marshal.h: %-marshal.list Makefile
$(AM_V_GEN)$(GLIB_GENMARSHAL) --header --prefix=_$(subst -,_,$*)_marshal $< > $*-marshal.h
%-marshal.c: %-marshal.list Makefile
$(AM_V_GEN)echo "#include \"empathy-marshal.h\"" > $@ && \
$(GLIB_GENMARSHAL) --body --prefix=_$(subst -,_,$*)_marshal $< >> $*-marshal.c
empathy-enum-types.h: stamp-empathy-enum-types.h
$(AM_V_GEN)true
stamp-empathy-enum-types.h: $(libempathy_headers) Makefile
$(AM_V_GEN)(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: $(libempathy_headers) Makefile
$(AM_V_GEN)(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-status-presets.dtd \
empathy-contact-groups.dtd \
empathy-chatroom-manager.dtd \
empathy-irc-networks.dtd
ircnetworksdir = $(datadir)/empathy
ircnetworks_DATA = \
irc-networks.xml
EXTRA_DIST = \
empathy-marshal.list \
$(dtd_DATA) \
$(ircnetworks_DATA)
CLEANFILES = \
$(BUILT_SOURCES) \
stamp-empathy-enum-types.h
|