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

Revision 18275, 1.6 KB checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18274, 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
7EXTRA_DIST =\
8        COPYING.LIB \
9        librsvg.spec.in \
10        librsvg-2.0.pc.in
11
12lib_LTLIBRARIES = librsvg-2.la
13
14librsvg_2_la_SOURCES = \
15        librsvg-features.c \
16        rsvg-bpath-util.c \
17        rsvg-bpath-util.h \
18        rsvg-css.c \
19        rsvg-css.h \
20        rsvg-defs.c \
21        rsvg-defs.h \
22        rsvg-paint-server.c \
23        rsvg-paint-server.h \
24        rsvg-path.c \
25        rsvg-path.h \
26        rsvg.c
27
28librsvg_2_la_LDFLAGS = -version-info @VERSION_INFO@
29
30librsvgincdir = $(includedir)/librsvg-2/librsvg
31librsvginc_HEADERS = \
32        rsvg.h \
33        librsvg-features.h
34
35INCLUDES =\
36        -I$(top_srcdir) \
37        -I$(top_builddir) \
38        $(LIBRSVG_CFLAGS) \
39        $(GTK_CFLAGS)   \
40        -DG_LOG_DOMAIN=\"librsvg\" \
41        -DG_DISABLE_DEPRECATED \
42        -DPANGO_DISABLE_DEPRECATED \
43        -DGDK_DISABLE_DEPRECATED \
44        -DGDK_PIXBUF_DISABLE_DEPRECATED \
45        -DGTK_DISABLE_DEPRECATED \
46        -DDATADIR="\"$(datadir)\""
47
48DEPS = $(top_builddir)/librsvg-2.la
49LDADDS = $(top_builddir)/librsvg-2.la \
50        $(LIBRSVG_LIBS) \
51        $(POPT_LIBS)
52
53rsvg_SOURCES=test-rsvg.c
54rsvg_LDFLAGS =
55rsvg_DEPENDENCIES = $(DEPS)
56rsvg_LDADD = $(LDADDS) -lm
57
58test_performance_SOURCES=test-performance.c
59test_performance_LDFLAGS =
60test_performance_DEPENDENCIES = $(DEPS)
61test_performance_LDADD = $(LDADDS) -lm
62
63test_display_SOURCES=test-display.c
64test_display_LDFLAGS =
65test_display_DEPENDENCIES = $(DEPS)
66test_display_LDADD = $(LDADDS) $(GTK_LIBS) -lm
67
68tests: rsvg
69
70## Put `exec' in the name because this should be installed by
71## `install-exec', not `install-data'.
72
73pkgconfigdir = $(libdir)/pkgconfig
74pkgconfig_DATA = librsvg-2.0.pc
75
76dist-hook: librsvg.spec
77        cp librsvg.spec $(distdir)
Note: See TracBrowser for help on using the repository browser.