comparison finch/plugins/Makefile.am @ 22173:85c365822504

Add a plugin to provide 'Online/Offline' grouping and no grouping.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Tue, 22 Jan 2008 07:54:48 +0000
parents 36400e6f8954
children f5bcb58bdf56 20846036cbd5
comparison
equal deleted inserted replaced
22172:0934fa012c8c 22173:85c365822504
1 gntclipboard_la_LDFLAGS = -module -avoid-version 1 gntclipboard_la_LDFLAGS = -module -avoid-version
2 gntgf_la_LDFLAGS = -module -avoid-version 2 gntgf_la_LDFLAGS = -module -avoid-version
3 gnthistory_la_LDFLAGS = -module -avoid-version 3 gnthistory_la_LDFLAGS = -module -avoid-version
4 gntlastlog_la_LDFLAGS = -module -avoid-version 4 gntlastlog_la_LDFLAGS = -module -avoid-version
5 grouping_la_LDFLAGS = -module -avoid-version
5 6
6 if PLUGINS 7 if PLUGINS
7 8
8 plugin_LTLIBRARIES = \ 9 plugin_LTLIBRARIES = \
9 gntclipboard.la \ 10 gntclipboard.la \
10 gntgf.la \ 11 gntgf.la \
11 gnthistory.la \ 12 gnthistory.la \
12 gntlastlog.la 13 gntlastlog.la \
14 grouping.la
13 15
14 plugindir = $(libdir)/finch 16 plugindir = $(libdir)/finch
15 17
16 gntclipboard_la_SOURCES = gntclipboard.c 18 gntclipboard_la_SOURCES = gntclipboard.c
17 gntgf_la_SOURCES = gntgf.c 19 gntgf_la_SOURCES = gntgf.c
18 gnthistory_la_SOURCES = gnthistory.c 20 gnthistory_la_SOURCES = gnthistory.c
19 gntlastlog_la_SOURCES = lastlog.c 21 gntlastlog_la_SOURCES = lastlog.c
22 grouping_la_SOURCES = grouping.c
20 23
21 gntclipboard_la_CFLAGS = $(X11_CFLAGS) 24 gntclipboard_la_CFLAGS = $(X11_CFLAGS)
22 gntgf_la_CFLAGS = $(X11_CFLAGS) 25 gntgf_la_CFLAGS = $(X11_CFLAGS)
23 26
24 gntclipboard_la_LIBADD = $(GLIB_LIBS) $(X11_LIBS) 27 gntclipboard_la_LIBADD = $(GLIB_LIBS) $(X11_LIBS)
25 gntgf_la_LIBADD = $(GLIB_LIBS) $(X11_LIBS) $(top_builddir)/finch/libgnt/libgnt.la 28 gntgf_la_LIBADD = $(GLIB_LIBS) $(X11_LIBS) $(top_builddir)/finch/libgnt/libgnt.la
26 gnthistory_la_LIBADD = $(GLIB_LIBS) 29 gnthistory_la_LIBADD = $(GLIB_LIBS)
27 gntlastlog_la_LIBADD = $(GLIB_LIBS) 30 gntlastlog_la_LIBADD = $(GLIB_LIBS)
31 grouping_la_LIBADD = $(GLIB_LIBS) $(top_builddir)/finch/libgnt/libgnt.la
28 32
29 endif # PLUGINS 33 endif # PLUGINS
30 34
31 EXTRA_DIST = pietray.py 35 EXTRA_DIST = pietray.py
32 36