File: Makefile.am

package info (click to toggle)
evince 0.1.5-2sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 5,652 kB
  • ctags: 6,344
  • sloc: cpp: 56,129; ansic: 14,214; sh: 10,859; makefile: 430; xml: 120
file content (69 lines) | stat: -rw-r--r-- 1,583 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
NULL=

INCLUDES=					\
	-DDATADIR=\"$(pkgdatadir)\"		\
	-I$(top_srcdir)/lib			\
	-I$(top_srcdir)/backend			\
	-I$(top_srcdir)/pdf/xpdf		\
	-I$(top_srcdir)/pixbuf			\
	-I$(top_srcdir)/ps	                \
	-DGNOMELOCALEDIR=\"$(datadir)/locale\"	\
	-DGNOMEICONDIR=\""$(datadir)/pixmaps"\" \
	$(SHELL_CFLAGS)				\
	$(EVINCE_DISABLE_DEPRECATED)		\
	$(NULL)

bin_PROGRAMS=evince

evince_SOURCES=				\
	dummy.cc			\
	eggfindbar.c			\
	eggfindbar.h			\
	ev-application.c		\
	ev-application.h		\
	ev-marshal.c			\
	ev-marshal.h			\
	ev-page-action.c		\
	ev-page-action.h		\
	ev-password.h			\
	ev-password.c			\
	ev-password-view.h		\
	ev-password-view.c		\
	ev-print-job.c			\
	ev-print-job.h			\
	ev-utils.c			\
	ev-utils.h			\
	ev-view.c			\
	ev-view.h			\
	ev-window.c			\
	ev-window.h			\
	ev-sidebar.c			\
	ev-sidebar.h			\
	ev-sidebar-links.c		\
	ev-sidebar-links.h		\
	ev-sidebar-thumbnails.c		\
	ev-sidebar-thumbnails.h		\
	ev-stock-icons.c		\
	ev-stock-icons.h		\
	main.c				\
	$(NULL)

evince_LDADD=						\
	$(SHELL_LIBS)					\
	$(top_builddir)/lib/libev.la			\
	$(top_builddir)/pdf/xpdf/libpdfdocument.la 	\
	$(top_builddir)/pixbuf/libpixbufdocument.la	\
	$(top_builddir)/ps/libgtkgs.la			\
	$(top_builddir)/backend/libevbackend.la		\
	$(NULL)

BUILT_SOURCES = ev-marshal.h ev-marshal.c

EXTRA_DIST = ev-marshal.list

ev-marshal.h: ev-marshal.list
	glib-genmarshal --prefix=ev_marshal ev-marshal.list --header > ev-marshal.h

ev-marshal.c: ev-marshal.list
	echo '#include "ev-marshal.h"' > ev-marshal.c
	glib-genmarshal --prefix=ev_marshal ev-marshal.list --body >> ev-marshal.c