File: Makefile.am

package info (click to toggle)
purple-plugin-pack 2.6.3-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 5,488 kB
  • sloc: ansic: 33,222; sh: 10,198; makefile: 1,391; python: 400
file content (44 lines) | stat: -rw-r--r-- 725 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
38
39
40
41
42
43
44
HEADER_FILES = \
	aim_blt_files.h \
	alias_xml_files.h \
	gen_xml_files.h \
	lh_util.h \
	listhandler.h \
	migrate.h \
	purple_blist_xml.h

EXTRA_DIST=\
	Makefile.mingw \
	plugins.cfg \
	$(HEADER_FILES)

listhandlerdir = $(PURPLE_LIBDIR)

listhandler_la_LDFLAGS = -module -avoid-version

if HAVE_PURPLE

listhandler_LTLIBRARIES = listhandler.la

listhandler_la_SOURCES = \
	aim_blt_files.c \
	alias_xml_files.c \
	gen_xml_files.c \
	lh_util.c \
	migrate.c \
	listhandler.c \
	purple_blist_xml.c

listhandler_la_LIBADD = \
	$(GLIB_LIBS) \
	$(PURPLE_LIBS)

endif

AM_CPPFLAGS = \
	-DLIBDIR=\"$(PURPLE_LIBDIR)\" \
	-DDATADIR=\"$(PURPLE_DATADIR)\" \
	-DPIXMAPSDIR=\"$(PURPLE_PIXMAPSDIR)\" \
	$(DEBUG_CFLAGS) \
	$(PURPLE_CFLAGS)