~noskcaj/ubuntu/trusty/gnome-documents/3.10.2

« back to all changes in this revision

Viewing changes to libgd/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson, Thomas Bechtold
  • Date: 2013-04-04 13:32:08 UTC
  • mfrom: (3.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20130404133208-n19gqczi05z31ogb
Tags: 3.8.0-1
[ Thomas Bechtold ]
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
        $(LIBGD_CFLAGS)                         \
14
14
        $(NULL)
15
15
 
 
16
noinst_PROGRAMS =
 
17
 
16
18
if LIBGD_STATIC
17
19
noinst_LTLIBRARIES = libgd.la
18
20
else
24
26
libgd_la_SOURCES = libgd/gd.h
25
27
nodist_libgd_la_SOURCES =
26
28
 
27
 
if LIBGD_STATIC
28
 
libgd_la_LDFLAGS += -static
29
 
endif
30
 
 
31
29
if LIBGD_GTK_HACKS
32
30
gtk_hacks_sources =                             \
33
31
        libgd/gd-entry-focus-hack.c             \
44
42
view_common_sources =                           \
45
43
        libgd/gd-main-view-generic.c            \
46
44
        libgd/gd-main-view-generic.h            \
 
45
        libgd/gd-styled-text-renderer.c         \
 
46
        libgd/gd-styled-text-renderer.h         \
47
47
        libgd/gd-two-lines-renderer.c           \
48
48
        libgd/gd-two-lines-renderer.h           \
49
49
        $(NULL)
94
94
EXTRA_DIST += $(main_toolbar_sources)
95
95
endif
96
96
 
 
97
if LIBGD_HEADER_BAR
 
98
header_bar_sources =                            \
 
99
        libgd/gd-header-bar.c                   \
 
100
        libgd/gd-header-bar.h                   \
 
101
        $(NULL)
 
102
 
 
103
nodist_libgd_la_SOURCES += $(header_bar_sources)
 
104
EXTRA_DIST += $(header_bar_sources)
 
105
 
 
106
noinst_PROGRAMS += test-header-bar
 
107
test_header_bar_SOURCES =                       \
 
108
        test-header-bar.c                       \
 
109
        $(NULL)
 
110
test_header_bar_LDADD =                         \
 
111
        $(LIBGD_LIBS)                           \
 
112
        libgd.la                                \
 
113
        $(NULL)
 
114
endif
 
115
 
 
116
if LIBGD__HEADER_BUTTON
 
117
header_button_sources =                         \
 
118
        libgd/gd-header-button.c                \
 
119
        libgd/gd-header-button.h                \
 
120
        $(NULL)
 
121
 
 
122
nodist_libgd_la_SOURCES += $(header_button_sources)
 
123
EXTRA_DIST += $(header_button_sources)
 
124
endif
 
125
 
97
126
if LIBGD_MARGIN_CONTAINER
98
127
margin_container_sources =                      \
99
128
        libgd/gd-margin-container.c             \
114
143
EXTRA_DIST += $(notification_sources)
115
144
endif
116
145
 
 
146
if LIBGD_REVEALER
 
147
revealer_sources =                              \
 
148
        libgd/gd-revealer.c                     \
 
149
        libgd/gd-revealer.h                     \
 
150
        $(NULL)
 
151
 
 
152
nodist_libgd_la_SOURCES += $(revealer_sources)
 
153
EXTRA_DIST += $(revealer_sources)
 
154
 
 
155
noinst_PROGRAMS += test-revealer
 
156
test_revealer_SOURCES =                         \
 
157
        test-revealer.c                         \
 
158
        $(NULL)
 
159
test_revealer_LDADD =                           \
 
160
        $(LIBGD_LIBS)                           \
 
161
        libgd.la                                \
 
162
        $(NULL)
 
163
endif
 
164
 
 
165
if LIBGD_STACK
 
166
stack_sources =                         \
 
167
        libgd/gd-stack.c                        \
 
168
        libgd/gd-stack.h                        \
 
169
        libgd/gd-stack-switcher.c               \
 
170
        libgd/gd-stack-switcher.h               \
 
171
        $(NULL)
 
172
 
 
173
nodist_libgd_la_SOURCES += $(stack_sources)
 
174
EXTRA_DIST += $(stack_sources)
 
175
 
 
176
noinst_PROGRAMS += test-stack
 
177
test_stack_SOURCES =                            \
 
178
        test-stack.c                            \
 
179
        $(NULL)
 
180
test_stack_LDADD =                              \
 
181
        $(LIBGD_LIBS)                           \
 
182
        libgd.la                                \
 
183
        $(NULL)
 
184
endif
 
185
 
117
186
if LIBGD_TAGGED_ENTRY
118
187
tagged_entry_sources =                          \
119
188
        libgd/gd-tagged-entry.c                 \