diff options
author | xclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4> | 2007-05-09 04:55:56 +0800 |
---|---|---|
committer | xclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4> | 2007-05-09 04:55:56 +0800 |
commit | 98d9a4fd6d1afd6a670350478a855f64da0f91b1 (patch) | |
tree | 2c78c4f7d99e3a0cf5f6d6fe9bd233c605c316df /src/Makefile.am | |
parent | 51ba330cb9658d13c81fd8bfb3fe7b4f70f9a295 (diff) | |
download | gsoc2013-empathy-98d9a4fd6d1afd6a670350478a855f64da0f91b1.tar gsoc2013-empathy-98d9a4fd6d1afd6a670350478a855f64da0f91b1.tar.gz gsoc2013-empathy-98d9a4fd6d1afd6a670350478a855f64da0f91b1.tar.bz2 gsoc2013-empathy-98d9a4fd6d1afd6a670350478a855f64da0f91b1.tar.lz gsoc2013-empathy-98d9a4fd6d1afd6a670350478a855f64da0f91b1.tar.xz gsoc2013-empathy-98d9a4fd6d1afd6a670350478a855f64da0f91b1.tar.zst gsoc2013-empathy-98d9a4fd6d1afd6a670350478a855f64da0f91b1.zip |
[darcs-to-svn @ Improve build system]
git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@36 4ee84921-47dd-4033-b63a-18d7a039a3e4
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 35 |
1 files changed, 22 insertions, 13 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 2eb2d0286..8b9e63a19 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,28 +1,42 @@ -AM_CPPFLAGS = \ - -I. \ - -I$(top_srcdir) \ - $(EMPATHY_CFLAGS) \ +cppflags = \ + -I. \ + -I$(top_srcdir) \ + $(EMPATHY_CFLAGS) \ $(WARN_CFLAGS) -AM_LDFLAGS = \ - $(top_builddir)/libempathy/libempathy.la \ +libs = \ $(top_builddir)/libempathy-gtk/libempathy-gtk.la \ $(EMPATHY_LIBS) -bin_PROGRAMS = empathy empathy-accounts empathy-chat empathy-contact-list +bin_PROGRAMS = \ + empathy \ + empathy-chat \ + empathy-accounts \ + empathy-contact-list empathy_SOURCES = \ empathy-main.c \ empathy-filter.c empathy-filter.h +empathy_CPPFLAGS = $(cppflags) +empathy_LDADD = $(libs) + empathy_accounts_SOURCES = empathy-accounts-main.c +empathy_accounts_CPPFLAGS = $(cppflags) +empathy_accounts_LDADD = $(libs) + empathy_chat_SOURCES = empathy-chat-main.c +empathy_chat_CPPFLAGS = $(cppflags) +empathy_chat_LDADD = $(libs) + empathy_contact_list_SOURCES = empathy-contact-list-main.c +empathy_contact_list_CPPFLAGS = $(cppflags) +empathy_contact_list_LDADD = $(libs) # MC plugin #pluginlib_LTLIBRARIES = libempathy-filter-plugin.la #libempathy_filter_plugin_la_SOURCES = empathy-filter-plugin.c #libempathy_filter_plugin_la_CPPFLAGS = $(MISSION_CONTROL_PLUGINS_CFLAGS) -#libempathy_filter_plugin_la_LDFLAGS = $(MISSION_CONTROL_PLUGINS_LIBS) +#libempathy_filter_plugin_la_LIBADD = $(MISSION_CONTROL_PLUGINS_LIBS) # Dbus service file servicedir = $(datadir)/dbus-1/services @@ -36,11 +50,6 @@ $(service_DATA): $(service_in_files) Makefile chandlerdir = $(datadir)/telepathy/managers chandler_DATA = empathy-chat.chandler -autostartdir = $(datadir)/gnome/autostart -autostart_in_files = empathy.desktop.in -autostart_DATA = $(autostart_in_files:.desktop.in=.desktop) -@INTLTOOL_DESKTOP_RULE@ - # Empathy filter DBus API empathy-filter-glue.h: empathy-filter.xml $(LIBTOOL) --mode=execute $(DBUS_BINDING_TOOL) --prefix=empathy_filter --mode=glib-server --output=$@ $< |