Mercurial > pidgin.yaz
annotate finch/plugins/Makefile.am @ 32064:4aeca6c1c143
NEWS
author | masca@cpw.pidgin.im |
---|---|
date | Fri, 13 May 2011 04:33:20 +0000 |
parents | 6a4cab3959b7 |
children |
rev | line source |
---|---|
15893
886025ef7daa
Build gntclipboard plugin by default. If we don't want this, at least
Stu Tomlinson <stu@nosnilmot.com>
parents:
15885
diff
changeset
|
1 gntclipboard_la_LDFLAGS = -module -avoid-version |
15818 | 2 gntgf_la_LDFLAGS = -module -avoid-version |
3 gnthistory_la_LDFLAGS = -module -avoid-version | |
22173
85c365822504
Add a plugin to provide 'Online/Offline' grouping and no grouping.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18140
diff
changeset
|
4 gntlastlog_la_LDFLAGS = -module -avoid-version |
26582
8986c3804ada
Add a gnt TinyURL plugin. Closes #2017
Richard Nelson <wabz@pidgin.im>
parents:
26441
diff
changeset
|
5 gnttinyurl_la_LDFLAGS = -module -avoid-version |
22173
85c365822504
Add a plugin to provide 'Online/Offline' grouping and no grouping.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18140
diff
changeset
|
6 grouping_la_LDFLAGS = -module -avoid-version |
15818 | 7 |
8 if PLUGINS | |
9 | |
10 plugin_LTLIBRARIES = \ | |
15893
886025ef7daa
Build gntclipboard plugin by default. If we don't want this, at least
Stu Tomlinson <stu@nosnilmot.com>
parents:
15885
diff
changeset
|
11 gntclipboard.la \ |
15818 | 12 gntgf.la \ |
13 gnthistory.la \ | |
22173
85c365822504
Add a plugin to provide 'Online/Offline' grouping and no grouping.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18140
diff
changeset
|
14 gntlastlog.la \ |
26582
8986c3804ada
Add a gnt TinyURL plugin. Closes #2017
Richard Nelson <wabz@pidgin.im>
parents:
26441
diff
changeset
|
15 gnttinyurl.la \ |
22173
85c365822504
Add a plugin to provide 'Online/Offline' grouping and no grouping.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18140
diff
changeset
|
16 grouping.la |
15818 | 17 |
15885
c6e563dfaa7a
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <stu@nosnilmot.com>
parents:
15818
diff
changeset
|
18 plugindir = $(libdir)/finch |
15818 | 19 |
15893
886025ef7daa
Build gntclipboard plugin by default. If we don't want this, at least
Stu Tomlinson <stu@nosnilmot.com>
parents:
15885
diff
changeset
|
20 gntclipboard_la_SOURCES = gntclipboard.c |
15818 | 21 gntgf_la_SOURCES = gntgf.c |
22 gnthistory_la_SOURCES = gnthistory.c | |
23 gntlastlog_la_SOURCES = lastlog.c | |
26582
8986c3804ada
Add a gnt TinyURL plugin. Closes #2017
Richard Nelson <wabz@pidgin.im>
parents:
26441
diff
changeset
|
24 gnttinyurl_la_SOURCES = gnttinyurl.c |
22173
85c365822504
Add a plugin to provide 'Online/Offline' grouping and no grouping.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18140
diff
changeset
|
25 grouping_la_SOURCES = grouping.c |
15818 | 26 |
16046
42c6d1d81bec
gntclipboard plugin needs X11
Richard Nelson <wabz@pidgin.im>
parents:
15893
diff
changeset
|
27 gntclipboard_la_CFLAGS = $(X11_CFLAGS) |
15818 | 28 gntgf_la_CFLAGS = $(X11_CFLAGS) |
29 | |
16046
42c6d1d81bec
gntclipboard plugin needs X11
Richard Nelson <wabz@pidgin.im>
parents:
15893
diff
changeset
|
30 gntclipboard_la_LIBADD = $(GLIB_LIBS) $(X11_LIBS) |
15818 | 31 gntgf_la_LIBADD = $(GLIB_LIBS) $(X11_LIBS) $(top_builddir)/finch/libgnt/libgnt.la |
32 gnthistory_la_LIBADD = $(GLIB_LIBS) | |
33 gntlastlog_la_LIBADD = $(GLIB_LIBS) | |
26582
8986c3804ada
Add a gnt TinyURL plugin. Closes #2017
Richard Nelson <wabz@pidgin.im>
parents:
26441
diff
changeset
|
34 gnttinyurl_la_LIBADD = $(GLIB_LIBS) |
22173
85c365822504
Add a plugin to provide 'Online/Offline' grouping and no grouping.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18140
diff
changeset
|
35 grouping_la_LIBADD = $(GLIB_LIBS) $(top_builddir)/finch/libgnt/libgnt.la |
15818 | 36 |
37 endif # PLUGINS | |
38 | |
18140
36400e6f8954
EXTRA_DIST the dbus script.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16917
diff
changeset
|
39 EXTRA_DIST = pietray.py |
15818 | 40 |
41 AM_CPPFLAGS = \ | |
42 -DDATADIR=\"$(datadir)\" \ | |
43 -I$(top_builddir)/libpurple \ | |
44 -I$(top_srcdir)/libpurple \ | |
45 -I$(top_srcdir) \ | |
46 -I$(top_srcdir)/finch \ | |
47 -I$(top_srcdir)/finch/libgnt \ | |
25562
1343ff17b110
The whitespace at the end of the line was giving me errors.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
25545
diff
changeset
|
48 $(DEBUG_CFLAGS) \ |
15818 | 49 $(GLIB_CFLAGS) \ |
50 $(GNT_CFLAGS) \ | |
51 $(PLUGIN_CFLAGS) | |
52 | |
53 # | |
54 # This part allows people to build their own plugins in here. | |
55 # Yes, it's a mess. | |
56 # | |
57 SUFFIXES = .c .so | |
58 .c.so: | |
23972
20846036cbd5
Fix compiling 'make plugin.so' when srcdir != builddir. This should've been part of the last commit.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22173
diff
changeset
|
59 $(LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I$(top_builddir) $(AM_CPPFLAGS) $(CFLAGS) -c $< -o tmp$@.lo $(PLUGIN_CFLAGS) |
15818 | 60 $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o libtmp$@.la -rpath $(plugindir) tmp$@.lo $(LIBS) $(LDFLAGS) -module -avoid-version $(PLUGIN_LIBS) |
61 @rm -f tmp$@.lo tmp$@.o libtmp$@.la | |
27605
6a4cab3959b7
Fix building individual plugins on OS X. Closes #3156.
Paul Aurich <paul@darkrain42.org>
parents:
26582
diff
changeset
|
62 @cp .libs/libtmp$@.so.so $@ |
6a4cab3959b7
Fix building individual plugins on OS X. Closes #3156.
Paul Aurich <paul@darkrain42.org>
parents:
26582
diff
changeset
|
63 @rm -rf .libs/libtmp$@.* |