File: Makefile.am

package info (click to toggle)
xfce4-panel 4.6.4-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 6,516 kB
  • ctags: 2,609
  • sloc: ansic: 21,392; sh: 10,234; makefile: 977; xml: 564; perl: 92
file content (92 lines) | stat: -rw-r--r-- 1,958 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# $Id$

INCLUDES = 								\
	-I$(top_srcdir)							\
	-DG_LOG_DOMAIN=\"libwindowlist\"				\
	-DLOCALEDIR=\"$(localedir)\"					\
	-DWNCK_I_KNOW_THIS_IS_UNSTABLE					\
	$(PLATFORM_CPPFLAGS)

bin_PROGRAMS =								\
	xfce4-popup-windowlist

xfce4_popup_windowlist_SOURCES =					\
	xfce4-popup-windowlist.c					\
	xfce4-popup-windowlist.h

xfce4_popup_windowlist_CFLAGS =						\
	$(LIBX11_CFLAGS)						\
	$(GTK_CFLAGS)							\
	$(PLATFORM_CFLAGS)

xfce4_popup_windowlist_LDADD =						\
	$(LIBX11_LDFLAGS)						\
	$(LIBX11_LIBS)							\
	$(GTK_LIBS)

plugindir =								\
	$(libdir)/xfce4/panel-plugins

plugin_LTLIBRARIES =							\
	libwindowlist.la

libwindowlist_la_SOURCES = 						\
	windowlist.h							\
	windowlist.c							\
	windowlist-dialog.h						\
	windowlist-dialog.c						\
	xfce4-popup-windowlist.h

libwindowlist_la_CFLAGS =						\
	$(GTK_CFLAGS)							\
	$(LIBXFCE4UTIL_CFLAGS)						\
	$(LIBXFCEGUI4_CFLAGS)						\
	$(LIBWNCK_CFLAGS)						\
	$(PLATFORM_CFLAGS)

libwindowlist_la_LDFLAGS =						\
	-avoid-version							\
	-module								\
	$(PLATFORM_LDFLAGS)

if HAVE_CYGWIN
libwindowlist_la_LDFLAGS += 						\
	-no-undefined
endif

libwindowlist_la_LIBADD =						\
	$(top_builddir)/libxfce4panel/libxfce4panel.la			\
	$(GTK_LIBS)							\
	$(LIBWNCK_LIBS)							\
	$(LIBXFCE4UTIL_LIBS)						\
	$(LIBXFCEGUI4_LIBS)

libwindowlist_la_DEPENDENCIES =						\
	$(top_builddir)/libxfce4panel/libxfce4panel.la

#
# .desktop file
#
desktopdir =								\
	$(datadir)/xfce4/panel-plugins

desktop_in_in_files =							\
	windowlist.desktop.in.in

desktop_in_files = 							\
	$(desktop_in_in_files:.desktop.in.in=.desktop.in)

%.desktop.in: %.desktop.in.in
	sed -e "s,\@libdir\@,$(libdir),g" < $< > $@

desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
@INTLTOOL_DESKTOP_RULE@

EXTRA_DIST = 								\
	$(desktop_in_in_files)

DISTCLEANFILES =							\
	$(desktop_DATA)							\
	$(desktop_in_files)

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