libpurple/example/Makefile.am

Mon, 16 Sep 2013 22:53:40 +0530

author
Ankit Vani <a@nevitus.org>
date
Mon, 16 Sep 2013 22:53:40 +0530
branch
soc.2013.gobjectification.plugins
changeset 36752
c726e758c59b
parent 36359
e7b513e26435
child 37136
cfa7c57f9ca5
permissions
-rw-r--r--

Refactored finch grouping plugin to use the new plugin API

16347
effb9953a80d Don't install nullclient by default, it's probably not particularly useful
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 15942
diff changeset
1 noinst_PROGRAMS = nullclient
15673
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
2
15942
22a8b548b017 Include defines.h in make dist
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 15673
diff changeset
3 nullclient_SOURCES = defines.h nullclient.c
22a8b548b017 Include defines.h in make dist
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 15673
diff changeset
4 nullclient_DEPENDENCIES =
15673
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
5 nullclient_LDFLAGS = -export-dynamic
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
6 nullclient_LDADD = \
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
7 $(DBUS_LIBS) \
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
8 $(INTLLIBS) \
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
9 $(GLIB_LIBS) \
36359
e7b513e26435 Added GPLUGIN_CFLAGS and GPLUGIN_LIBS to appropriate makefiles
Ankit Vani <a@nevitus.org>
parents: 28454
diff changeset
10 $(GPLUGIN_LIBS) \
22073
6544c27f7e09 The whitespace at the end of the line was giving me errors.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19882
diff changeset
11 $(LIBXML_LIBS) \
15673
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
12 $(top_builddir)/libpurple/libpurple.la
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
13
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
14 AM_CPPFLAGS = \
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
15 -DSTANDALONE \
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
16 -DDATADIR=\"$(datadir)\" \
16651
218fe51ae7b7 soname versioning of libpurple. Should help resolve debian bug 421282
Stu Tomlinson <nosnilmot@pidgin.im>
parents: 16347
diff changeset
17 -DLIBDIR=\"$(libdir)/purple-$(PURPLE_MAJOR_VERSION)/\" \
15673
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
18 -DLOCALEDIR=\"$(datadir)/locale\" \
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
19 -DSYSCONFDIR=\"$(sysconfdir)\" \
22292
6c52172a2792 Fix for $(top_builddir) != $(top_srcdir)
Björn Voigt <bjoern@cs.tu-berlin.de>
parents: 16651
diff changeset
20 -I$(top_builddir)/libpurple \
6c52172a2792 Fix for $(top_builddir) != $(top_srcdir)
Björn Voigt <bjoern@cs.tu-berlin.de>
parents: 16651
diff changeset
21 -I$(top_srcdir)/libpurple \
15673
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
22 -I$(top_srcdir) \
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
23 $(DEBUG_CFLAGS) \
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
24 $(GLIB_CFLAGS) \
36359
e7b513e26435 Added GPLUGIN_CFLAGS and GPLUGIN_LIBS to appropriate makefiles
Ankit Vani <a@nevitus.org>
parents: 28454
diff changeset
25 $(GPLUGIN_CFLAGS) \
15673
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
26 $(DBUS_CFLAGS) \
7f2c84ae63b0 Add the example nullclient here.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff changeset
27 $(LIBXML_CFLAGS)

mercurial