source: trunk/third/librsvg/Makefile.am @ 18609

Revision 18609, 1.8 KB checked in by ghudson, 21 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18608, which included commits to RCS files with non-trunk default branches.
Line 
1SUBDIRS = . gtk-engine gdk-pixbuf-loader
2
3bin_PROGRAMS = rsvg
4
5noinst_PROGRAMS = test-performance test-display
6
7man_MANS = rsvg.1
8
9EXTRA_DIST =\
10        COPYING.LIB \
11        librsvg.spec.in \
12        librsvg-2.0.pc.in \
13        $(man_MANS)
14
15lib_LTLIBRARIES = librsvg-2.la
16
17librsvg_2_la_SOURCES = \
18        librsvg-features.c \
19        rsvg-bpath-util.c \
20        rsvg-bpath-util.h \
21        rsvg-css.c \
22        rsvg-css.h \
23        rsvg-defs.c \
24        rsvg-defs.h \
25        rsvg-paint-server.c \
26        rsvg-paint-server.h \
27        rsvg-path.c \
28        rsvg-path.h \
29        rsvg-private.h \
30        rsvg-file-util.c \
31        rsvg-shapes.c   \
32        rsvg-shapes.h   \
33        rsvg-styles.c   \
34        rsvg-styles.h   \
35        rsvg-text.c     \
36        rsvg-text.h     \
37        rsvg.c
38
39librsvg_2_la_LDFLAGS = -version-info @VERSION_INFO@
40
41librsvgincdir = $(includedir)/librsvg-2/librsvg
42librsvginc_HEADERS = \
43        rsvg.h \
44        librsvg-features.h
45
46INCLUDES =\
47        -I$(top_srcdir) \
48        -I$(top_builddir) \
49        $(LIBRSVG_CFLAGS) \
50        $(GTK_CFLAGS)   \
51        -DG_LOG_DOMAIN=\"librsvg\" \
52        -DG_DISABLE_DEPRECATED \
53        -DPANGO_DISABLE_DEPRECATED \
54        -DGDK_DISABLE_DEPRECATED \
55        -DGDK_PIXBUF_DISABLE_DEPRECATED \
56        -DGTK_DISABLE_DEPRECATED \
57        -DDATADIR="\"$(datadir)\""
58
59DEPS = $(top_builddir)/librsvg-2.la
60LDADDS = $(top_builddir)/librsvg-2.la \
61        $(LIBRSVG_LIBS) \
62        $(POPT_LIBS)
63
64rsvg_SOURCES=test-rsvg.c
65rsvg_LDFLAGS =
66rsvg_DEPENDENCIES = $(DEPS)
67rsvg_LDADD = $(LDADDS) -lm
68
69test_performance_SOURCES=test-performance.c
70test_performance_LDFLAGS =
71test_performance_DEPENDENCIES = $(DEPS)
72test_performance_LDADD = $(LDADDS) -lm
73
74test_display_SOURCES=test-display.c
75test_display_LDFLAGS =
76test_display_DEPENDENCIES = $(DEPS)
77test_display_LDADD = $(LDADDS) $(GTK_LIBS) -lm
78
79tests: rsvg
80
81## Put `exec' in the name because this should be installed by
82## `install-exec', not `install-data'.
83
84pkgconfigdir = $(libdir)/pkgconfig
85pkgconfig_DATA = librsvg-2.0.pc
86
87dist-hook: librsvg.spec
88        cp librsvg.spec $(distdir)
Note: See TracBrowser for help on using the repository browser.