~ubuntu-branches/ubuntu/trusty/gnome-shell/trusty-proposed

« back to all changes in this revision

Viewing changes to src/Makefile-st.am

Tags: upstream-3.3.90
ImportĀ upstreamĀ versionĀ 3.3.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
st_built_sources =                              \
13
13
        st-enum-types.h                         \
14
 
        st-enum-types.c                         \
15
 
        st-marshal.h                            \
16
 
        st-marshal.c
 
14
        st-enum-types.c
17
15
 
18
16
BUILT_SOURCES += $(st_built_sources)
19
17
 
20
18
EXTRA_DIST +=                                   \
21
19
        st/test-theme.css                       \
22
 
        st/st-marshal.list                      \
23
20
        st/st-enum-types.h.in                   \
24
21
        st/st-enum-types.c.in
25
22
 
26
 
CLEANFILES += stamp-st-marshal.h stamp-st-enum-types.h
27
 
 
28
 
st-marshal.h: stamp-st-marshal.h
29
 
        @true
30
 
stamp-st-marshal.h: Makefile st/st-marshal.list
31
 
        $(AM_V_GEN) $(GLIB_GENMARSHAL)                                  \
32
 
                --prefix=_st_marshal                                    \
33
 
                --header                                                \
34
 
        $(srcdir)/st/st-marshal.list > $@.tmp &&                        \
35
 
        (cmp -s $@.tmp st-marshal.h || cp -f $@.tmp st-marshal.h) &&    \
36
 
        rm -f $@.tmp &&                                                 \
37
 
        echo timestamp > $(@F)
38
 
 
39
 
st-marshal.c: Makefile st/st-marshal.list
40
 
        $(AM_V_GEN) (echo "#include \"st-marshal.h\"" ; \
41
 
         $(GLIB_GENMARSHAL)                             \
42
 
                --prefix=_st_marshal                    \
43
 
                --body                                  \
44
 
         $(srcdir)/st/st-marshal.list ) > $@.tmp &&     \
45
 
        cp -f $@.tmp st-marshal.c &&                    \
46
 
        rm -f $@.tmp
 
23
CLEANFILES += stamp-st-enum-types.h
47
24
 
48
25
st-enum-types.h: stamp-st-enum-types.h Makefile
49
26
        @true
82
59
        st/st-icon-colors.h                     \
83
60
        st/st-im-text.h                         \
84
61
        st/st-label.h                           \
85
 
        st/st-overflow-box.h                    \
86
62
        st/st-private.h                         \
87
63
        st/st-scrollable.h                      \
88
64
        st/st-scroll-bar.h                      \
94
70
        st/st-theme.h                           \
95
71
        st/st-theme-context.h                   \
96
72
        st/st-theme-node.h                      \
97
 
        st/st-tooltip.h                         \
98
73
        st/st-types.h                           \
99
74
        st/st-widget.h                          \
100
75
        st/st-widget-accessible.h               \
139
114
        st/st-icon-colors.c                     \
140
115
        st/st-im-text.c                         \
141
116
        st/st-label.c                           \
142
 
        st/st-overflow-box.c                    \
143
117
        st/st-private.c                         \
144
118
        st/st-scrollable.c                      \
145
119
        st/st-scroll-bar.c                      \
153
127
        st/st-theme-node.c                      \
154
128
        st/st-theme-node-drawing.c              \
155
129
        st/st-theme-node-transition.c           \
156
 
        st/st-tooltip.c                         \
157
130
        st/st-widget.c                          \
158
131
        $(NULL)
159
132