annotate libpurple/example/Makefile.am @ 15905:6f04fe174f40

Change some stuff from gaim to pidgin
author Mark Doliner <mark@kingant.net>
date Sun, 25 Mar 2007 01:28:40 +0000
parents f6b7e893c4f1
children a9c75536f0c9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15618
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
1 bin_PROGRAMS = nullclient
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
2
15881
f6b7e893c4f1 Include defines.h in make dist
Stu Tomlinson <stu@nosnilmot.com>
parents: 15618
diff changeset
3 nullclient_SOURCES = defines.h nullclient.c
f6b7e893c4f1 Include defines.h in make dist
Stu Tomlinson <stu@nosnilmot.com>
parents: 15618
diff changeset
4 nullclient_DEPENDENCIES =
15618
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) \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
10 $(LIBXML_LIBS) \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
11 $(top_builddir)/libpurple/libpurple.la
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
12
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
13 AM_CPPFLAGS = \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
14 -DSTANDALONE \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
15 -DBR_PTHREADS=0 \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
16 -DDATADIR=\"$(datadir)\" \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
17 -DLIBDIR=\"$(libdir)/libpurple/\" \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
18 -DLOCALEDIR=\"$(datadir)/locale\" \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
19 -DSYSCONFDIR=\"$(sysconfdir)\" \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
20 -I$(top_srcdir)/libpurple/ \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
21 -I$(top_srcdir) \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
22 $(DEBUG_CFLAGS) \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
23 $(GLIB_CFLAGS) \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
24 $(DBUS_CFLAGS) \
7e0c0062c428 Add the example nullclient here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
25 $(LIBXML_CFLAGS)