summaryrefslogtreecommitdiff
path: root/gui/simple-greeter/libnotificationarea/Makefile.am
blob: 5f766e1a2e7bf0d5072e08bec42cb3bbbea1e17d (plain)
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
NULL =

INCLUDES = \
	-I.					\
	-I..					\
	-DBINDIR=\"$(bindir)\"				\
	-DDATADIR=\"$(datadir)\"			\
	-DLIBDIR=\"$(libdir)\"				\
	-DLIBEXECDIR=\"$(libexecdir)\"			\
	-DLOGDIR=\"$(logdir)\"				\
	-DPIXMAPDIR=\"$(pixmapdir)\"			\
	-DSBINDIR=\"$(sbindir)\"			\
	$(GUI_CFLAGS)					\
	$(NULL)

noinst_LTLIBRARIES = 			\
	libnotificationarea.la		\
	$(NULL)

BUILT_SOURCES = 	\
	na-marshal.c 	\
	na-marshal.h	\
	$(NULL)

libnotificationarea_la_SOURCES =		\
	fixedtip.h				\
	fixedtip.c				\
	obox.c					\
	obox.h					\
	na-tray.c				\
	na-tray.h				\
	na-tray-manager.c			\
	na-tray-manager.h			\
	na-marshal.c				\
	na-marshal.h				\
	$(NULL)

libnotificationarea_la_LIBADD =			\
	$(GUI_LIBS)				\
	$(NULL)

libnotificationarea_la_LDFLAGS = 		\
	-export-dynamic 			\
	$(NULL)

EXTRA_DIST =					\
	na-marshal.list				\
	$(NULL)

na-marshal.h: na-marshal.list $(GLIB_GENMARSHAL)
	$(GLIB_GENMARSHAL) $< --header --prefix=_na_marshal > $@

na-marshal.c: na-marshal.list $(GLIB_GENMARSHAL)
	echo "#include \"na-marshal.h\"" > $@ && \
	$(GLIB_GENMARSHAL) $< --body --prefix=_na_marshal >> $@

noinst_PROGRAMS = testtray

testtray_SOURCES = 		\
	testtray.c		\
	$(NULL)

testtray_LDADD = 		\
	libnotificationarea.la	\
	$(GUI_LIBS)		\
	$(NULL)