]> www.fi.muni.cz Git - evince.git/blob - properties/Makefile.am
Some more cleanups. Was really necessary but I probably introduced bugs,
[evince.git] / properties / Makefile.am
1 NULL=
2
3 INCLUDES=                                       \
4         -DDATADIR=\"$(pkgdatadir)\"             \
5         -DGNOMELOCALEDIR=\"$(datadir)/locale\"  \
6         -I$(top_srcdir)/backend                 \
7         $(PROPERTIES_CFLAGS)                    \
8         $(NAUTILUS_CFLAGS)                      \
9         $(DISABLE_DEPRECATED)                   \
10         $(WARN_CFLAGS)                          \
11         $(NULL)
12
13 noinst_LTLIBRARIES = libevproperties.la
14
15 libevproperties_la_SOURCES=                     \
16         ev-properties-view.c                    \
17         ev-properties-view.h                    \
18         $(NULL)
19
20 libevproperties_la_LIBADD = $(PROPERTIES_LIBS)
21
22 if HAVE_NAUTILUS
23 EVINCE_PROPERTIES_PAGE = libevince-properties-page.la
24 else
25 EVINCE_PROPERTIES_PAGE =
26 endif
27
28 nautilus_LTLIBRARIES = $(EVINCE_PROPERTIES_PAGE)
29
30 nautilusdir = $(libdir)/nautilus/extensions-1.0/
31 libevince_properties_page_la_CFLAGS = -I$(top_srcdir)
32 libevince_properties_page_la_SOURCES =  \
33         ev-properties-main.c
34
35 libevince_properties_page_la_LIBADD =                   \
36         $(PROPERTIES_LIBS)                              \
37         libevproperties.la                              \
38         $(top_builddir)/backend/libevbackend.la         \
39         $(top_builddir)/lib/libev.la