File: Makefile.am

package info (click to toggle)
cinnamon-settings-daemon 2.2.4.repack-7
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 14,864 kB
  • sloc: ansic: 46,046; makefile: 1,693; xml: 245; sh: 58; python: 21
file content (66 lines) | stat: -rw-r--r-- 1,381 bytes parent folder | download | duplicates (3)
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
plugin_name = sound

libexec_PROGRAMS = csd-test-sound

csd_test_sound_SOURCES =	\
	csd-sound-manager.h	\
	csd-sound-manager.c	\
	test-sound.c

csd_test_sound_CFLAGS =						\
	-I$(top_srcdir)/cinnamon-settings-daemon			\
	-I$(top_srcdir)/plugins/common				\
	-DCINNAMON_SETTINGS_LOCALEDIR=\""$(datadir)/locale"\"	\
	$(SOUND_CFLAGS)						\
	$(PLUGIN_CFLAGS)					\
	$(SETTINGS_PLUGIN_CFLAGS)				\
	$(AM_CFLAGS)

csd_test_sound_LDADD =						\
	$(top_builddir)/cinnamon-settings-daemon/libcsd.la		\
	$(top_builddir)/plugins/common/libcommon.la		\
	$(SOUND_LIBS)						\
	$(SETTINGS_PLUGIN_LIBS)

plugin_LTLIBRARIES = \
	libsound.la

libsound_la_SOURCES = \
	csd-sound-plugin.h \
	csd-sound-plugin.c \
	csd-sound-manager.h \
	csd-sound-manager.c

libsound_la_CPPFLAGS = \
	-I$(top_srcdir)/cinnamon-settings-daemon \
	-DCINNAMON_SETTINGS_LOCALEDIR=\""$(datadir)/locale"\" \
	$(AM_CPPFLAGS)

libsound_la_CFLAGS = \
	$(PLUGIN_CFLAGS)		\
	$(SETTINGS_PLUGIN_CFLAGS) \
	$(SOUND_CFLAGS)	\
	$(AM_CFLAGS)

libsound_la_LDFLAGS = \
	$(CSD_PLUGIN_LDFLAGS)

libsound_la_LIBADD = \
	$(SETTINGS_PLUGIN_LIBS)	\
	$(SOUND_LIBS)

plugin_in_files = \
	sound.cinnamon-settings-plugin.in

plugin_DATA = $(plugin_in_files:.cinnamon-settings-plugin.in=.cinnamon-settings-plugin)

EXTRA_DIST = \
	$(plugin_in_files)

CLEANFILES = \
	$(plugin_DATA)

DISTCLEANFILES = \
	$(plugin_DATA)

@CSD_INTLTOOL_PLUGIN_RULE@