File: Makefile.am

package info (click to toggle)
xfce4-fsguard-plugin 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,156 kB
  • sloc: sh: 10,688; ansic: 651; makefile: 128
file content (34 lines) | stat: -rw-r--r-- 854 bytes parent folder | download | duplicates (6)
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
plugindir = $(libdir)/xfce4/panel/plugins
plugin_LTLIBRARIES =	libfsguard.la

libfsguard_la_SOURCES = fsguard.c

libfsguard_la_CFLAGS =											\
	-I$(top_srcdir)											\
	@LIBXFCE4UI_CFLAGS@										\
	@LIBXFCE4UTIL_CFLAGS@										\
	@LIBXFCE4PANEL_CFLAGS@										\
	-DPACKAGE_LOCALE_DIR=\"$(localedir)\"

libfsguard_la_LIBADD =												\
	@LIBXFCE4UI_LIBS@											\
	@LIBXFCE4UTIL_LIBS@											\
	@LIBXFCE4PANEL_LIBS@

libfsguard_la_LDFLAGS = \
	-avoid-version \
	-module \
	-no-undefined \
	-export-symbols-regex '^xfce_panel_module_(preinit|init|construct)' \
	$(PLATFORM_LDFLAGS)

# .desktop file
#
desktop_in_files = fsguard.desktop.in
desktopdir = $(datadir)/xfce4/panel/plugins
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
@INTLTOOL_DESKTOP_RULE@

EXTRA_DIST = $(desktop_in_files)

DISTCLEANFILES = $(desktop_DATA)