blob: 95e42237f2b248c77263f0f19aa5fa39e67d2f1e (
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
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
93
|
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libslab.pc
AM_CPPFLAGS = \
-I$(top_srcdir) \
$(LIBSLAB_CFLAGS) \
$(WARN_CFLAGS)
HEADER_FILES= \
$(BUILT_SOURCES) \
app-resizer.h \
app-shell.h \
application-tile.h \
bookmark-agent.h \
directory-tile.h \
document-tile.h \
double-click-detector.h \
mate-utils.h \
libslab-utils.h \
nameplate-tile.h \
search-bar.h \
search-context-picker.h \
search-entry.h \
shell-window.h \
slab-mate-util.h \
slab-section.h \
slab.h \
system-tile.h \
tile.h
lib_LTLIBRARIES = libslab.la
libslab_la_SOURCES = \
$(MARSHAL_GENERATED) \
app-resizer.c \
app-shell.c \
application-tile.c \
bookmark-agent.c \
directory-tile.c \
document-tile.c \
double-click-detector.c \
mate-utils.c \
libslab-utils.c \
nameplate-tile.c \
search-bar.c \
search-context-picker.c \
search-entry-watermark.h \
search-entry.c \
shell-window.c \
slab-mate-util.c \
slab-section.c \
system-tile.c \
themed-icon.c \
themed-icon.h \
tile-action.c \
tile.c
libslab_includedir = $(includedir)/libslab
libslab_include_HEADERS = $(HEADER_FILES)
libslab_la_LIBADD = $(LIBSLAB_LIBS)
search-entry-watermark.h: search-entry-watermark.svg
echo '#define SEARCH_ENTRY_WATERMARK_SVG "\' > $@; \
sed -e 's/"/\\"/g' -e 's/$$/\\/' -e 's/#000000/#%s/g' $< >> $@; \
echo '"' >> $@
MARSHAL_GENERATED = nld-marshal.c nld-marshal.h
nld-marshal.h: nld-marshal.list
( @GLIB_GENMARSHAL@ --prefix=nld_marshal $(srcdir)/nld-marshal.list --header > nld-marshal.tmp \
&& mv nld-marshal.tmp nld-marshal.h ) \
|| ( rm -f nld-marshal.tmp && exit 1 )
nld-marshal.c: nld-marshal.h
( (echo '#include "nld-marshal.h"'; @GLIB_GENMARSHAL@ --prefix=nld_marshal $(srcdir)/nld-marshal.list --body) > nld-marshal.tmp \
&& mv nld-marshal.tmp nld-marshal.c ) \
|| ( rm -f nld-marshal.tmp && exit 1 )
BUILT_SOURCES = \
search-entry-watermark.h \
$(MARSHAL_GENERATED)
CLEANFILES = \
search-entry-watermark.h \
$(MARSHAL_GENERATED)
EXTRA_DIST= \
search-entry-watermark.svg \
nld-marshal.list
-include $(top_srcdir)/git.mk
|