annotate pidgin/plugins/disco/Makefile.am @ 28630:9c7fe51c153b

Avoid an unnecessary alloc/free.
author Daniel Atallah <daniel.atallah@gmail.com>
date Tue, 15 Sep 2009 15:43:29 +0000
parents 470507fec7fa
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27058
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
1 plugindir = $(libdir)/pidgin
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
2
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
3 xmppdisco_la_LDFLAGS = -module -avoid-version
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
4
28304
470507fec7fa Include Makefile.mingw in the dist.
Daniel Atallah <daniel.atallah@gmail.com>
parents: 27253
diff changeset
5 EXTRA_DIST = \
470507fec7fa Include Makefile.mingw in the dist.
Daniel Atallah <daniel.atallah@gmail.com>
parents: 27253
diff changeset
6 Makefile.mingw
470507fec7fa Include Makefile.mingw in the dist.
Daniel Atallah <daniel.atallah@gmail.com>
parents: 27253
diff changeset
7
27058
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
8 if PLUGINS
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
9
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
10 plugin_LTLIBRARIES = xmppdisco.la
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
11
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
12 xmppdisco_la_SOURCES = \
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
13 gtkdisco.c \
27253
bd47fd3f3b6b Need to include header files here in order for them to show up in the
Mark Doliner <mark@kingant.net>
parents: 27058
diff changeset
14 gtkdisco.h \
bd47fd3f3b6b Need to include header files here in order for them to show up in the
Mark Doliner <mark@kingant.net>
parents: 27058
diff changeset
15 xmppdisco.c \
bd47fd3f3b6b Need to include header files here in order for them to show up in the
Mark Doliner <mark@kingant.net>
parents: 27058
diff changeset
16 xmppdisco.h
27058
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
17
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
18 xmppdisco_la_LIBADD = $(GTK_LIBS)
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
19
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
20 endif
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
21
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
22 AM_CPPFLAGS = \
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
23 -DDATADIR=\"$(datadir)\" \
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
24 -I$(top_srcdir)/libpurple \
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
25 -I$(top_builddir)/libpurple \
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
26 -I$(top_srcdir)/pidgin \
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
27 $(DEBUG_CFLAGS) \
08964b4b2fe4 Convert the disco browser to a plugin. Refs #556
Paul Aurich <paul@darkrain42.org>
parents:
diff changeset
28 $(GTK_CFLAGS)