comparison plugins/Makefile.am @ 11435:1a2eaba2bc13

[gaim-migrate @ 13672] Some autotools tweak from Kevin Stange to let autogen.sh pass with automake 1.9 committer: Tailor Script <tailor@pidgin.im>
author Gary Kramlich <grim@reaperworld.com>
date Sun, 04 Sep 2005 02:03:48 +0000
parents a6d446cf090f
children 9b3833da6840
comparison
equal deleted inserted replaced
11434:f191b5bc199b 11435:1a2eaba2bc13
10 10
11 if USE_TCL 11 if USE_TCL
12 TCL_DIR = tcl 12 TCL_DIR = tcl
13 endif 13 endif
14 14
15 if ENABLE_DBUS
16 DBUS_LTLIB = dbus-example.la
17
18 # Only use music messaging if dbus is enabled
19 MUSICMESSAGING_DIR = musicmessaging
20 endif
21
15 SUBDIRS = \ 22 SUBDIRS = \
16 docklet $(GEVOLUTION_DIR) gestures \ 23 docklet $(GEVOLUTION_DIR) gestures \
17 $(PERL_DIR) ssl $(TCL_DIR) ticker 24 $(PERL_DIR) ssl $(TCL_DIR) ticker \
25 $(MUSICMESSAGING_DIR)
18 26
19 plugindir = $(libdir)/gaim 27 plugindir = $(libdir)/gaim
20 28
21 autorecon_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) 29 autorecon_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
22 extplacement_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) 30 extplacement_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
41 idle.la \ 49 idle.la \
42 notify.la \ 50 notify.la \
43 relnot.la \ 51 relnot.la \
44 spellchk.la \ 52 spellchk.la \
45 statenotify.la \ 53 statenotify.la \
46 timestamp.la 54 timestamp.la \
55 $(DBUS_LTLIB)
47 56
48 autorecon_la_SOURCES = autorecon.c 57 autorecon_la_SOURCES = autorecon.c
49 58
50 extplacement_la_SOURCES = extplacement.c 59 extplacement_la_SOURCES = extplacement.c
51 gaimrc_la_SOURCES = gaimrc.c 60 gaimrc_la_SOURCES = gaimrc.c
58 statenotify_la_SOURCES = statenotify.c 67 statenotify_la_SOURCES = statenotify.c
59 timestamp_la_SOURCES = timestamp.c 68 timestamp_la_SOURCES = timestamp.c
60 69
61 if ENABLE_DBUS 70 if ENABLE_DBUS
62 71
63 # Only use music messaging if dbus is enabled
64 SUBDIRS += musicmessaging
65
66 CLEANFILES = dbus-example-bindings.c 72 CLEANFILES = dbus-example-bindings.c
67 dbus_example_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) $(DBUS_LIBS) 73 dbus_example_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) $(DBUS_LIBS)
68 dbus_example_la_SOURCES = dbus-example.c 74 dbus_example_la_SOURCES = dbus-example.c
69 plugin_LTLIBRARIES += dbus-example.la
70 75
71 .PHONY: always 76 .PHONY: always
72 77
73 $(top_builddir)/src/dbus-types.h: always 78 $(top_builddir)/src/dbus-types.h: always
74 cd $(@D) && $(MAKE) $(AM_MAKEFLAGS) $(@F) 79 cd $(@D) && $(MAKE) $(AM_MAKEFLAGS) $(@F)