annotate pidgin/plugins/adiumthemes/Makefile.am @ 32566:59f433824040

Separated the MessageStyle loading code from the actual rendering code.
author tdrhq@soc.pidgin.im
date Fri, 14 Aug 2009 02:51:41 +0000
parents d0be198c4694
children 094a1b511259
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32525
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
1
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
2 webkittemplatedir = $(datadir)/pidgin/webkit
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
3 webkittemplate_DATA = Template.html
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
4
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
5 webkitdir = $(libdir)/pidgin
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
6
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
7 webkit_la_LDFLAGS = -module -avoid-version
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
8
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
9 EXTRA_DIST = $(webkittemplate_DATA)
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
10
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
11 if PLUGINS
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
12
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
13 webkit_LTLIBRARIES = webkit.la
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
14
32566
59f433824040 Separated the MessageStyle loading code from the actual rendering code.
tdrhq@soc.pidgin.im
parents: 32525
diff changeset
15 webkit_la_SOURCES = webkit.c \
59f433824040 Separated the MessageStyle loading code from the actual rendering code.
tdrhq@soc.pidgin.im
parents: 32525
diff changeset
16 message-style.h \
59f433824040 Separated the MessageStyle loading code from the actual rendering code.
tdrhq@soc.pidgin.im
parents: 32525
diff changeset
17 message-style.c
32525
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
18
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
19 endif
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
20
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
21 webkit_la_LIBADD = $(GTK_LIBS) $(WEBKIT_LIBS)
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
22
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
23 AM_CPPFLAGS = \
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
24 -DDATADIR=\"$(datadir)\" \
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
25 -I$(top_srcdir)/libpurple \
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
26 -I$(top_builddir)/libpurple \
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
27 -I$(top_srcdir)/pidgin \
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
28 $(DEBUG_CFLAGS) \
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
29 $(GTK_CFLAGS) \
d0be198c4694 other files that missed my main major commit.
tdrhq@soc.pidgin.im
parents:
diff changeset
30 $(WEBKIT_CFLAGS)