comparison finch/plugins/Makefile.am @ 15891:886025ef7daa

Build gntclipboard plugin by default. If we don't want this, at least include gntclipboard.c in EXTRA_DIST so it gets included in tarballs
author Stu Tomlinson <stu@nosnilmot.com>
date Sat, 24 Mar 2007 20:41:40 +0000
parents c6e563dfaa7a
children 42c6d1d81bec
comparison
equal deleted inserted replaced
15890:5bd5af818afe 15891:886025ef7daa
1 gntclipboard_la_LDFLAGS = -module -avoid-version
1 gntgf_la_LDFLAGS = -module -avoid-version 2 gntgf_la_LDFLAGS = -module -avoid-version
2 gnthistory_la_LDFLAGS = -module -avoid-version 3 gnthistory_la_LDFLAGS = -module -avoid-version
3 gntlastlog_la_LDFLAGS = -module -avoid-version 4 gntlastlog_la_LDFLAGS = -module -avoid-version
4 5
5 if PLUGINS 6 if PLUGINS
6 7
7 plugin_LTLIBRARIES = \ 8 plugin_LTLIBRARIES = \
9 gntclipboard.la \
8 gntgf.la \ 10 gntgf.la \
9 gnthistory.la \ 11 gnthistory.la \
10 gntlastlog.la 12 gntlastlog.la
11 13
12 plugindir = $(libdir)/finch 14 plugindir = $(libdir)/finch
13 15
16 gntclipboard_la_SOURCES = gntclipboard.c
14 gntgf_la_SOURCES = gntgf.c 17 gntgf_la_SOURCES = gntgf.c
15 gnthistory_la_SOURCES = gnthistory.c 18 gnthistory_la_SOURCES = gnthistory.c
16 gntlastlog_la_SOURCES = lastlog.c 19 gntlastlog_la_SOURCES = lastlog.c
17 20
18 gntgf_la_CFLAGS = $(X11_CFLAGS) 21 gntgf_la_CFLAGS = $(X11_CFLAGS)
19 22
23 gntclipboard_la_LIBADD = $(GLIB_LIBS)
20 gntgf_la_LIBADD = $(GLIB_LIBS) $(X11_LIBS) $(top_builddir)/finch/libgnt/libgnt.la 24 gntgf_la_LIBADD = $(GLIB_LIBS) $(X11_LIBS) $(top_builddir)/finch/libgnt/libgnt.la
21 gnthistory_la_LIBADD = $(GLIB_LIBS) 25 gnthistory_la_LIBADD = $(GLIB_LIBS)
22 gntlastlog_la_LIBADD = $(GLIB_LIBS) 26 gntlastlog_la_LIBADD = $(GLIB_LIBS)
23 27
24 endif # PLUGINS 28 endif # PLUGINS