File: Makefile.am

package info (click to toggle)
purple-plugin-pack 2.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 6,176 kB
  • ctags: 3,409
  • sloc: ansic: 38,210; sh: 11,016; makefile: 1,555; python: 400
file content (37 lines) | stat: -rw-r--r-- 655 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
EXTRA_DIST = \
	Makefile.mingw \
	plugins.cfg

if BUILD_SWITCH_SPELL
switchspelldir = $(PIDGIN_LIBDIR)

switchspell_la_LDFLAGS = -module -avoid-version

if HAVE_PIDGIN

switchspell_LTLIBRARIES = switchspell.la

switchspell_la_SOURCES = \
	switchspell.c

switchspell_la_LIBADD = \
	$(ASPELL_LIBS) \
	$(ENCHANT_LIBS) \
	$(GTK_LIBS) \
	$(GTKSPELL_LIBS) \
	$(PIDGIN_LIBS)

endif # PIDGIN

AM_CPPFLAGS = \
	-DLIBDIR=\"$(PIDGIN_LIBDIR)\" \
	-DDATADIR=\"$(PIDGIN_DATADIR)\" \
	-DPIXMAPSDIR=\"$(PIDGIN_PIXMAPSDIR)\" \
	$(ASPELL_CFLAGS) \
	$(ENCHANT_CFLAGS) \
	$(GTK_CFLAGS) \
	$(DEBUG_CFLAGS) \
	$(PIDGIN_CFLAGS) \
	$(GTKSPELL_CFLAGS)

endif # BUILD_SWITCH_SPELL