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

Revision 18352, 1.4 KB checked in by ghudson, 21 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18351, which included commits to RCS files with non-trunk default branches.
Line 
1noinst_PROGRAMS = test-rsvg test-performance
2
3EXTRA_DIST =\
4        COPYING.LIB \
5        librsvg.spec.in \
6        librsvg-2.0.pc.in
7
8lib_LTLIBRARIES = librsvg-2.la
9
10librsvg_2_la_SOURCES = \
11        librsvg-features.c \
12        rsvg-bpath-util.c \
13        rsvg-bpath-util.h \
14        rsvg-css.c \
15        rsvg-css.h \
16        rsvg-defs.c \
17        rsvg-defs.h \
18        rsvg-paint-server.c \
19        rsvg-paint-server.h \
20        rsvg-path.c \
21        rsvg-path.h \
22        rsvg.c
23
24librsvg_2_la_LDFLAGS = -version-info @VERSION_INFO@
25
26librsvgincdir = $(includedir)/librsvg-2/librsvg
27librsvginc_HEADERS = \
28        rsvg.h \
29        librsvg-features.h
30
31INCLUDES =\
32        -I$(top_srcdir) \
33        -I$(top_builddir) \
34        $(LIBRSVG_CFLAGS) \
35        -DG_LOG_DOMAIN=\"librsvg\" \
36        -DG_DISABLE_DEPRECATED \
37        -DPANGO_DISABLE_DEPRECATED \
38        -DGDK_DISABLE_DEPRECATED \
39        -DGDK_PIXBUF_DISABLE_DEPRECATED \
40        -DGTK_DISABLE_DEPRECATED \
41        -DDATADIR="\"$(datadir)\""
42
43DEPS = $(top_builddir)/librsvg-2.la
44LDADDS = $(top_builddir)/librsvg-2.la \
45        $(LIBRSVG_LIBS) \
46        $(POPT_LIBS)
47
48test_rsvg_SOURCES=test-rsvg.c
49test_rsvg_LDFLAGS =
50test_rsvg_DEPENDENCIES = $(DEPS)
51test_rsvg_LDADD = $(LDADDS) -lm
52
53test_performance_SOURCES=test-performance.c
54test_performance_LDFLAGS =
55test_performance_DEPENDENCIES = $(DEPS)
56test_performance_LDADD = $(LDADDS) -lm
57
58tests: test-rsvg
59
60## Put `exec' in the name because this should be installed by
61## `install-exec', not `install-data'.
62
63pkgconfigdir = $(libdir)/pkgconfig
64pkgconfig_DATA = librsvg-2.0.pc
65
66dist-hook: librsvg.spec
67        cp librsvg.spec $(distdir)
Note: See TracBrowser for help on using the repository browser.