File: Makefile.am

package info (click to toggle)
gtkmathview 0.8.0-8
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,904 kB
  • sloc: cpp: 53,699; xml: 12,660; sh: 8,979; makefile: 1,722; ansic: 1,149; perl: 88
file content (123 lines) | stat: -rw-r--r-- 2,866 bytes parent folder | download | duplicates (6)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123

NULL =

bin_PROGRAMS = $(NULL)
if COND_GMETADOM
bin_PROGRAMS += mathmlviewer
endif

noinst_PROGRAMS = $(NULL)
if COND_GMETADOM
if COND_PROFILE
noinst_PROGRAMS += mathmlviewer.static
endif
endif
if COND_LIBXML2
noinst_PROGRAMS += test_embedding
noinst_PROGRAMS += test_loading
noinst_PROGRAMS += test_building
noinst_PROGRAMS += test_rendering
endif
if COND_LIBXML2_READER
noinst_PROGRAMS += test_loading_reader
endif

noinst_HEADERS = guiGTK.h

mathmlviewer_static_SOURCES = main.cc aux.cc guiGTK.c
mathmlviewer_static_LDFLAGS = -no-install -static
mathmlviewer_static_LDADD = \
  $(POPT_LIBS) \
  $(DOM_LIBS) \
  $(GTK_LIBS) \
  $(top_builddir)/src/widget/libgtkmathview_gmetadom.la \
  $(T1_LIBS) \
  $(T1_LIBS_X) \
  $(NULL)

mathmlviewer_SOURCES = main.cc aux.cc guiGTK.c
mathmlviewer_LDADD = \
  $(POPT_LIBS) \
  $(DOM_LIBS) \
  $(GTK_LIBS) \
  $(T1_LIBS) \
  $(T1_LIBS_X) \
  $(top_builddir)/src/widget/libgtkmathview_gmetadom.la \
  $(NULL)

test_embedding_SOURCES = test_embedding.c dummy.cc
test_embedding_LDFLAGS = -no-install -static
test_embedding_LDADD = \
  -lstdc++ \
  $(XML_LIBS) \
  $(GTK_LIBS) \
  $(top_builddir)/src/widget/libgtkmathview_libxml2.la \
  $(T1_LIBS) \
  $(T1_LIBS_X) \
  $(NULL)

test_loading_SOURCES = test_loading.c dummy.cc
test_loading_LDFLASG = -no-install -static
test_loading_LDADD = \
  -lstdc++ \
  $(XML_LIBS) \
  $(GTK_LIBS) \
  $(T1_LIBS) \
  $(T1_LIBS_X) \
  $(top_builddir)/src/widget/libgtkmathview_libxml2.la \
  $(NULL)

test_building_SOURCES = test_building.cc
test_building_LDFLASG = -no-install -static
test_building_LDADD = \
  -lstdc++ \
  $(XML_LIBS) \
  $(GTK_LIBS) \
  $(T1_LIBS) \
  $(T1_LIBS_X) \
  $(top_builddir)/src/widget/libgtkmathview_libxml2.la \
  $(NULL)

test_rendering_SOURCES = test_rendering.cc
test_rendering_LDFLASG = -no-install -static
test_rendering_LDADD = \
  -lstdc++ \
  $(XML_LIBS) \
  $(GTK_LIBS) \
  $(T1_LIBS) \
  $(T1_LIBS_X) \
  $(GLIB_LIBS) \
  $(top_builddir)/src/backend/gtk/libmathview_backend_gtk.la \
  $(top_builddir)/src/view/libmathview_frontend_libxml2.la \
  $(NULL)

test_loading_reader_SOURCES = test_loading_reader.c
test_loading_reader_LDFLASG = -no-install -static
test_loading_reader_LDADD = \
  -lstdc++ \
  $(XML_LIBS) \
  $(GTK_LIBS) \
  $(T1_LIBS) \
  $(T1_LIBS_X) \
  $(top_builddir)/src/widget/libgtkmathview_libxml2_reader.la \
  $(NULL)

INCLUDES = \
  -I$(top_builddir)/auto/ \
  -I$(top_srcdir)/src/common/ \
  -I$(top_srcdir)/src/common/mathvariants \
  -I$(top_srcdir)/src/frontend/gmetadom/ \
  -I$(top_srcdir)/src/engine/common \
  -I$(top_srcdir)/src/engine/mathml \
  -I$(top_srcdir)/src/engine/boxml \
  -I$(top_srcdir)/src/widget \
  -I$(top_srcdir)/src/view \
  -I$(top_srcdir)/src/backend/common/ \
  -I$(top_srcdir)/src/backend/gtk/ \
  $(POPT_CFLAGS) \
  $(GTK_CFLAGS) \
  $(XML_CFLAGS) \
  $(DOM_CFLAGS) \
  $(XML_CFLAGS) \
  $(NULL)