File: Makefile.am

package info (click to toggle)
gtkmathview 0.7.7-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 8,388 kB
  • ctags: 7,020
  • sloc: cpp: 51,304; xml: 12,643; sh: 8,996; makefile: 1,593; ansic: 1,149; perl: 88
file content (50 lines) | stat: -rw-r--r-- 1,094 bytes parent folder | download
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

NULL =

bin_PROGRAMS = $(NULL)
if COND_LIBXML2
bin_PROGRAMS += mathmlsvg
endif

mathmlsvg_SOURCES = \
  Fragment.cc \
  Fragment.hh \
  Location.cc \
  Location.hh \
  MathView.hh \
  Model.hh \
  Scanner.cc \
  Scanner.hh \
  SMS.cc \
  SMS.hh \
  SVG_EvalRenderingContext.cc \
  SVG_EvalRenderingContext.hh \
  SVG_libxml2_StreamRenderingContext.cc \
  SVG_libxml2_StreamRenderingContext.hh \
  main.cc \
  $(NULL)

mathmlsvg_LDADD = \
  $(POPT_LIBS) \
  $(GLIB_LIBS) \
  $(top_builddir)/src/backend/svg/libmathview_backend_svg.la \
  $(top_builddir)/src/view/libmathview_frontend_libxml2.la \
  $(NULL)

INCLUDES = \
  $(POPT_CFLAGS) \
  $(XML_CFLAGS) \
  -I$(top_builddir)/auto \
  -I$(top_srcdir)/auto \
  -I$(top_srcdir)/src/common \
  -I$(top_srcdir)/src/common/mathvariants \
  -I$(top_srcdir)/src/frontend/common \
  -I$(top_srcdir)/src/frontend/libxml2 \
  -I$(top_srcdir)/src/engine/common \
  -I$(top_srcdir)/src/engine/mathml \
  -I$(top_srcdir)/src/engine/boxml \
  -I$(top_srcdir)/src/backend/common \
  -I$(top_srcdir)/src/backend/svg \
  -I$(top_srcdir)/src/view \
  $(NULL)