summaryrefslogtreecommitdiff
path: root/plugins/thunar-apr/Makefile.am
blob: b0ed555f8b312c74657854c6242a41ee256bf506 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
AM_CPPFLAGS =								\
	-I$(top_builddir)						\
	-I$(top_builddir)/plugins					\
	-I$(top_srcdir)							\
	-I$(top_srcdir)/plugins						\
	-DG_LOG_DOMAIN=\"thunar-apr\"					\
	-DPACKAGE_LOCALE_DIR=\"$(localedir)\"				\
	$(PLATFORM_CPPFLAGS)

extensionsdir = $(libdir)/thunarx-$(THUNARX_VERSION_API)
extensions_LTLIBRARIES =						\
	thunar-apr.la

thunar_apr_la_SOURCES =							\
	thunar-apr-abstract-page.c					\
	thunar-apr-abstract-page.h					\
	thunar-apr-desktop-page.c					\
	thunar-apr-desktop-page.h					\
	thunar-apr-image-page.c						\
	thunar-apr-image-page.h						\
	thunar-apr-plugin.c						\
	thunar-apr-private.c						\
	thunar-apr-private.h						\
	thunar-apr-provider.c						\
	thunar-apr-provider.h

thunar_apr_la_CFLAGS =							\
	$(EXIF_CFLAGS)							\
	$(EXO_CFLAGS)							\
	$(GLIB_CFLAGS)							\
	$(GTK_CFLAGS)							\
	$(PLATFORM_CFLAGS)

thunar_apr_la_LDFLAGS =							\
	-avoid-version							\
	-export-dynamic							\
	-no-undefined							\
	-export-symbols-regex "^thunar_extension_(shutdown|initialize|list_types)" \
	-module								\
	$(PLATFORM_LDFLAGS)

thunar_apr_la_LIBADD =							\
	$(top_builddir)/thunarx/libthunarx-$(THUNARX_VERSION_API).la	\
	$(EXIF_LIBS)							\
	$(EXO_LIBS)							\
	$(GLIB_LIBS)							\
	$(GTK_LIBS)

thunar_apr_la_DEPENDENCIES =						\
	$(top_builddir)/thunarx/libthunarx-$(THUNARX_VERSION_API).la


EXTRA_DIST =								\
	README

# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: