-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile.am
37 lines (31 loc) · 928 Bytes
/
Makefile.am
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
AM_CPPFLAGS = \
-I$(top_builddir) \
-I$(top_srcdir) \
-DG_LOG_DOMAIN=\"thunar-shares-plugin\" \
-DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
-DDATADIR=\"$(datadir)\" \
$(PLATFORM_CPPFLAGS)
extensionsdir = $(libdir)/thunarx-3
extensions_LTLIBRARIES = thunar-shares-plugin.la
thunar_shares_plugin_la_SOURCES = \
thunar-shares-plugin.c \
tsp-page.c tsp-page.h \
tsp-provider.c tsp-provider.h
thunar_shares_plugin_la_CFLAGS = \
$(PLATFORM_CFLAGS) \
$(GTK_CFLAGS) \
$(GLIB_CFLAGS) \
$(THUNARX_CFLAGS) \
$(XFCONF_CFLAGS)
thunar_shares_plugin_la_LDFLAGS = \
-avoid-version \
-export-dynamic \
-module \
$(GTK_LIBS) \
$(GLIB_LIBS) \
$(THUNARX_LIBS) \
$(XFCONF_LIBS) \
$(PLATFORM_LDFLAGS)
thunar_shares_plugin_la_LIBADD= \
$(top_builddir)/libshares/libshares.la
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: