annotate libpurple/example/Makefile.am @ 23774:1343ff17b110

The whitespace at the end of the line was giving me errors.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sat, 29 Dec 2007 20:47:20 +0000
parents 315151da0dc6
children f5bcb58bdf56
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16266
a9c75536f0c9 Don't install nullclient by default, it's probably not particularly useful
Stu Tomlinson <stu@nosnilmot.com>
parents: 15880
diff changeset
1 noinst_PROGRAMS = nullclient
15617
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
2
15880
f6b7e893c4f1 Include defines.h in make dist
Stu Tomlinson <stu@nosnilmot.com>
parents: 15617
diff changeset
3 nullclient_SOURCES = defines.h nullclient.c
f6b7e893c4f1 Include defines.h in make dist
Stu Tomlinson <stu@nosnilmot.com>
parents: 15617
diff changeset
4 nullclient_DEPENDENCIES =
15617
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
5 nullclient_LDFLAGS = -export-dynamic
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
6 nullclient_LDADD = \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
7 $(DBUS_LIBS) \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
8 $(INTLLIBS) \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
9 $(GLIB_LIBS) \
23774
1343ff17b110 The whitespace at the end of the line was giving me errors.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents: 23759
diff changeset
10 $(LIBXML_LIBS) \
23759
315151da0dc6 Basic Google Talk voice call support. No UI; receiving a call auto-accepts it.
Sean Egan <seanegan@gmail.com>
parents: 16583
diff changeset
11 $(FARSIGHT_LIBS) \
15617
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
12 $(top_builddir)/libpurple/libpurple.la
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
13
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
14 AM_CPPFLAGS = \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
15 -DSTANDALONE \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
16 -DBR_PTHREADS=0 \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
17 -DDATADIR=\"$(datadir)\" \
16583
ce049678a67b soname versioning of libpurple. Should help resolve debian bug 421282
Stu Tomlinson <stu@nosnilmot.com>
parents: 16266
diff changeset
18 -DLIBDIR=\"$(libdir)/purple-$(PURPLE_MAJOR_VERSION)/\" \
15617
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
19 -DLOCALEDIR=\"$(datadir)/locale\" \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
20 -DSYSCONFDIR=\"$(sysconfdir)\" \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
21 -I$(top_srcdir)/libpurple/ \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
22 -I$(top_srcdir) \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
23 $(DEBUG_CFLAGS) \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
24 $(GLIB_CFLAGS) \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
25 $(DBUS_CFLAGS) \
23759
315151da0dc6 Basic Google Talk voice call support. No UI; receiving a call auto-accepts it.
Sean Egan <seanegan@gmail.com>
parents: 16583
diff changeset
26 $(FARSIGHT_CFLAGS) \
15617
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
27 $(LIBXML_CFLAGS)