comparison console/plugins/Makefile.am @ 14223:7c560c01b8f9

[gaim-migrate @ 16904] Add a plugin gnthistory. The plugin is a core plugin, but does not look good in gtkgaim. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sun, 20 Aug 2006 16:45:57 +0000
parents 44ec6c7cbc76
children 9e9699792bb9
comparison
equal deleted inserted replaced
14222:8c13a650cef5 14223:7c560c01b8f9
1 gntgf_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS) 1 gntgf_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
2 gnthistory_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
2 3
3 if PLUGINS 4 if PLUGINS
4 5
5 plugin_LTLIBRARIES = \ 6 plugin_LTLIBRARIES = \
6 gntgf.la 7 gntgf.la \
8 gnthistory.la
7 9
8 plugindir = $(libdir)/gaim 10 plugindir = $(libdir)/gaim
9 11
10 gntgf_la_SOURCES = gntgf.c 12 gntgf_la_SOURCES = gntgf.c
13 gnthistory_la_SOURCES = gnthistory.c
11 14
12 endif # PLUGINS 15 endif # PLUGINS
13 16
14 EXTRA_DIST = 17 EXTRA_DIST =
15 18
16 GNT_CFLAGS = `pkg-config --cflags gnt` -I..
17
18 AM_CPPFLAGS = \ 19 AM_CPPFLAGS = \
19 -DDATADIR=\"$(datadir)\" \ 20 -DDATADIR=\"$(datadir)\" \
20 -DVERSION=\"$(VERSION)\" \ 21 -DVERSION=\"$(VERSION)\" \
21 -I$(top_builddir)/src \ 22 -I$(top_builddir)/libgaim \
22 -I$(top_srcdir)/src \ 23 -I$(top_srcdir)/libgaim \
24 -I$(top_srcdir)/console \
25 -I$(top_srcdir)/console/libgnt \
23 $(DEBUG_CFLAGS) \ 26 $(DEBUG_CFLAGS) \
24 $(GNT_CFLAGS) \
25 $(GLIB_CFLAGS) \ 27 $(GLIB_CFLAGS) \
26 $(PLUGIN_CFLAGS) 28 $(PLUGIN_CFLAGS)
27 29
28 # 30 #
29 # This part allows people to build their own plugins in here. 31 # This part allows people to build their own plugins in here.