Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/properties/Makefile.am
blob: 5f824aa2770d8285a76a9b7c9e59d6fd0e03aa80 (plain)
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
NULL=

INCLUDES=					\
	-DDATADIR=\"$(pkgdatadir)\"		\
	-DGNOMELOCALEDIR=\"$(datadir)/locale\"	\
	-I$(top_srcdir)/backend			\
	$(PROPERTIES_CFLAGS)			\
	$(NAUTILUS_CFLAGS)			\
	$(DISABLE_DEPRECATED)			\
	$(WARN_CFLAGS)				\
	$(NULL)

noinst_LTLIBRARIES = libevproperties.la

libevproperties_la_SOURCES=			\
	ev-properties-view.c			\
	ev-properties-view.h			\
	$(NULL)

libevproperties_la_LIBADD = $(PROPERTIES_LIBS)

if HAVE_NAUTILUS
EVINCE_PROPERTIES_PAGE = libevince-properties-page.la
else
EVINCE_PROPERTIES_PAGE =
endif

nautilus_LTLIBRARIES = $(EVINCE_PROPERTIES_PAGE)

nautilusdir = $(libdir)/nautilus/extensions-1.0/
libevince_properties_page_la_CFLAGS = -I$(top_srcdir)
libevince_properties_page_la_SOURCES = 	\
	ev-properties-main.c

libevince_properties_page_la_LIBADD = 			\
	$(PROPERTIES_LIBS)				\
	libevproperties.la				\
	$(top_builddir)/backend/libevbackend.la		\
	$(top_builddir)/lib/libev.la