File: Makefile.am

package info (click to toggle)
xfce-mcs-plugins 4.3.99.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,888 kB
  • ctags: 564
  • sloc: sh: 8,586; ansic: 6,355; xml: 929; makefile: 440
file content (58 lines) | stat: -rw-r--r-- 1,425 bytes parent folder | download
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
57
58
# $Id: Makefile.am 23059 2006-09-02 21:58:29Z olivier $

INCLUDES =								\
	-I$(top_srcdir)							\
	-I$(top_srcdir)/plugins/gtk_common				\
	-I$(top_builddir)						\
	-DLOCALEDIR=\""$(localedir)"\"					\
	$(PLATFORM_CPPFLAGS)

mouse_plugindir = $(libdir)/xfce4/mcs-plugins
mouse_plugin_LTLIBRARIES =						\
	mouse_plugin.la

mouse_plugin_la_SOURCES =						\
	mouse_plugin.c							\
	mouse-plugin-internal.h						\
	mouse-cursor-settings.c

mouse_plugin_la_CFLAGS =						\
	$(LIBX11_CFLAGS)						\
	$(LIBXFCEGUI4_CFLAGS)						\
	$(XFCE_MCS_MANAGER_CFLAGS)					\
	$(XKB_CFLAGS)							\
	$(PLATFORM_CFLAGS)

mouse_plugin_la_LDFLAGS =						\
	-avoid-version							\
	-module								\
	-no-undefined							\
	$(LIBX11_LDFLAGS)						\
	$(PLATFORM_LDFLAGS)

mouse_plugin_la_LIBADD =						\
	$(LIBX11_LIBS)							\
	$(XCURSOR_LIBS)                                                 \
	$(XKB_LIBS)

if HAVE_CYGWIN
mouse_plugin_la_LDFLAGS +=						\
	-export-symbols $(datadir)/xfce4/devel/mcs-manager.def		\
	$(XFCE_MCS_MANAGER_LDFLAGS)
mouse_plugin_la_LIBADD +=						\
	$(XFCE_MCS_MANAGER_LIBS)					\
	$(LIBX11_LIBS)
endif

desktopdir = $(datadir)/applications
desktop_in_files = xfce-mouse-settings.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
@INTLTOOL_DESKTOP_RULE@

EXTRA_DIST =								\
	$(desktop_in_files)

DISTCLEANFILES =							\
	$(desktop_DATA)

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