File: Makefile.am

package info (click to toggle)
cutter-testing-framework 1.1.7-1.2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 18,556 kB
  • sloc: ansic: 79,864; xml: 38,680; sh: 10,266; makefile: 2,324; ruby: 845; cpp: 697
file content (63 lines) | stat: -rw-r--r-- 1,167 bytes parent folder | download | duplicates (2)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
INCLUDES = 			\
	 -I$(top_builddir)	\
	 -I$(top_srcdir)

AM_CFLAGS =			\
	$(GLIB_CFLAGS)		\
	$(COVERAGE_CFLAGS)

AM_LDFLAGS =							\
  -avoid-version -module					\
  -no-undefined -export-dynamic $(LIBTOOL_EXPORT_OPTIONS)

report_module_LTLIBRARIES = 	\
	xml.la

report_factory_module_LTLIBRARIES =	\
	xml_factory.la

LIBS =						\
	$(GLIB_LIBS)				\
	$(top_builddir)/cutter/libcutter.la

xml_la_CPPFLAGS =
xml_la_SOURCES = cut-xml-report.c

xml_factory_la_CPPFLAGS =
xml_factory_la_SOURCES = cut-xml-report-factory.c

if PDF_REPORT_AVAILABLE
report_module_LTLIBRARIES += pdf.la
report_factory_module_LTLIBRARIES += pdf_factory.la

pdf_la_CFLAGS =			\
	$(CAIRO_PDF_CFLAGS)	\
	$(PANGO_CAIRO_CFLAGS)	\
	$(GOFFICE_CFLAGS)	\
	$(AM_CFLAGS)

pdf_la_SOURCES = 		\
	cut-pdf-report.c 	\
	cut-cairo.c		\
	cut-cairo.h		\
	cut-cairo-pie-chart.c	\
	cut-cairo-pie-chart.h	\
	cut-cairo-chart-data.c	\
	cut-cairo-chart-data.h

pdf_la_LIBADD =			\
	$(CAIRO_PDF_LIBS)	\
	$(PANGO_CAIRO_LIBS)	\
	$(GOFFICE_LIBS)		\
	-lm


pdf_factory_la_CFLAGS =		\
	$(GOFFICE_CFLAGS)	\
	$(AM_CFLAGS)

pdf_factory_la_LIBADD =		\
	$(GOFFICE_LIBS)

pdf_factory_la_SOURCES = cut-pdf-report-factory.c
endif