summaryrefslogtreecommitdiff
path: root/plugins/thunar-wallpaper/Makefile.am
blob: 94556703aa9b7f2fa24f3c9c5e6edd2cb0946f90 (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
INCLUDES =								\
	-I$(top_builddir)						\
	-I$(top_srcdir)							\
	-DG_LOG_DOMAIN=\"thunar-wallpaper-plugin\"			\
	-DEXO_API_SUBJECT_TO_CHANGE					\
	-DPACKAGE_LOCALE_DIR=\"$(localedir)\"				\
	$(PLATFORM_CPPFLAGS)

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

thunar_wallpaper_plugin_la_SOURCES =					\
	twp-provider.h							\
	twp-provider.c							\
	thunar-wallpaper-plugin.c

thunar_wallpaper_plugin_la_CFLAGS =					\
	$(EXO_CFLAGS)							\
	$(GLIB_CFLAGS)							\
	$(GTK_CFLAGS)							\
	$(LIBX11_CFLAGS)						\
	$(PLATFORM_CFLAGS)

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

thunar_wallpaper_plugin_la_LIBADD =					\
	$(top_builddir)/thunarx/libthunarx-$(THUNARX_VERSION_API).la	\
	$(EXO_LIBS)							\
	$(GLIB_LIBS)							\
	$(GTK_LIBS)							\
	$(LIBX11_LIBS)
	
thunar_wallpaper_plugin_la_DEPENDENCIES =				\
	$(top_builddir)/thunarx/libthunarx-$(THUNARX_VERSION_API).la

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