]> Pileus Git - ~andy/gtk/blob - tests/Makefile.am
Add an expander-in-dialog example
[~andy/gtk] / tests / Makefile.am
1 ## Makefile.am for gtk+/tests
2 include $(top_srcdir)/Makefile.decl
3
4 INCLUDES =                              \
5         -I$(top_srcdir)                 \
6         -I$(top_builddir)/gdk           \
7         -I$(top_srcdir)/gdk             \
8         -DGDK_DISABLE_DEPRECATED        \
9         -DGTK_DISABLE_DEPRECATED        \
10         $(GTK_DEBUG_FLAGS)              \
11         $(GTK_DEP_CFLAGS)               \
12         $(GDK_DEP_CFLAGS)
13
14 DEPS =                                                                  \
15         $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la  \
16         $(top_builddir)/gdk/$(gdktargetlib)                             \
17         $(top_builddir)/gtk/$(gtktargetlib)
18
19 LDADDS =                                                                \
20         $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la  \
21         $(top_builddir)/gdk/$(gdktargetlib)                             \
22         $(top_builddir)/gtk/$(gtktargetlib)                             \
23         $(GTK_DEP_LIBS)
24
25 if USE_X11
26 testsocket_programs = testsocket testsocket_child
27 endif
28
29 noinst_PROGRAMS =  $(TEST_PROGS)        \
30         simple                          \
31         flicker                         \
32         print-editor                    \
33         testaccel                       \
34         testassistant                   \
35         testbbox                        \
36         testbuttons                     \
37         testcairo                       \
38         testcalendar                    \
39         testcombo                       \
40         testcombochange                 \
41         testcellrenderertext            \
42         testclientmessage               \
43         testdnd                         \
44         testellipsise                   \
45         testentrycompletion             \
46         testentryicons                  \
47         testfilechooser                 \
48         testfilechooserbutton           \
49         testframe                       \
50         testgtk                         \
51         testheightforwidth              \
52         testiconview                    \
53         testiconview-keynav             \
54         testicontheme                   \
55         testimage                       \
56         testinput                       \
57         testmenubars                    \
58         testmountoperation              \
59         testmultidisplay                \
60         testmultiscreen                 \
61         testnotebookdnd                 \
62         testnouiprint                   \
63         testoffscreen                   \
64         testoffscreenwindow             \
65         testorientable                  \
66         testprint                       \
67         testrgb                         \
68         testrecentchooser               \
69         testrecentchoosermenu           \
70         testrichtext                    \
71         testscale                       \
72         testselection                   \
73         $(testsocket_programs)          \
74         testspinbutton                  \
75         teststatusicon                  \
76         testtoolbar                     \
77         stresstest-toolbar              \
78         testtreeedit                    \
79         testtreemodel                   \
80         testtreeview                    \
81         testtreefocus                   \
82         testtreeflow                    \
83         testtreecolumns                 \
84         testtreecolumnsizing            \
85         testtreesort                    \
86         treestoretest                   \
87         testxinerama                    \
88         testwindows                     \
89         pixbuf-read                     \
90         pixbuf-lowmem                   \
91         pixbuf-randomly-modified        \
92         pixbuf-random                   \
93         pixbuf-threads                  \
94         testmerge                       \
95         testactions                     \
96         testgrouping                    \
97         testtooltips                    \
98         testexpander                    \
99         testvolumebutton
100
101 if OS_UNIX
102 noinst_PROGRAMS += testapplication
103 endif
104
105 if HAVE_CXX
106 noinst_PROGRAMS += autotestkeywords
107 TESTS = autotestkeywords
108
109 autotestkeywords_SOURCES = autotestkeywords.cc
110 autotestkeywords_CPPFLAGS = -I$(srcdir)/dummy-headers
111
112 if HAVE_OBJC
113 autotestkeywords_CPPFLAGS += -DHAVE_OBJC=1 -x objective-c++
114 endif
115
116 endif
117
118 flicker_DEPENDENCIES = $(TEST_DEPS)
119 simple_DEPENDENCIES = $(TEST_DEPS)
120 print_editor_DEPENDENCIES = $(TEST_DEPS)
121 testheightforwidth_DEPENDENCIES = $(TEST_DEPS)
122 testicontheme_DEPENDENCIES = $(TEST_DEPS)
123 testiconview_DEPENDENCIES = $(TEST_DEPS)
124 testaccel_DEPENDENCIES = $(TEST_DEPS)
125 testapplication_DEPENDENCIES = $(TEST_DEPS)
126 testassistant_DEPENDENCIES = $(TEST_DEPS)
127 testbbox_DEPENDENCIES = $(TEST_DEPS)
128 testbuttons_DEPENDENCIES = $(TEST_DEPS)
129 testframe_DEPENDENCIES = $(TEST_DEPS)
130 testcairo_DEPENDENCIES = $(TEST_DEPS)
131 testcalendar_DEPENDENCIES = $(TEST_DEPS)
132 testcombo_DEPENDENCIES = $(TEST_DEPS)
133 testcombochange_DEPENDENCIES = $(TEST_DEPS)
134 testcellrenderertext_DEPENDENCIES = $(TEST_DEPS)
135 testclientmessage_DEPENDENCIES = $(TEST_DEPS)
136 testdnd_DEPENDENCIES = $(TEST_DEPS)
137 testellipsise_DEPENDENCIES = $(TEST_DEPS)
138 testentrycompletion_DEPENDENCIES = $(TEST_DEPS)
139 testentryicons_DEPENDENCIES = $(TEST_DEPS)
140 testfilechooser_DEPENDENCIES = $(TEST_DEPS)
141 testfilechooserbutton_DEPENDENCIES = $(TEST_DEPS)
142 testgtk_DEPENDENCIES = $(TEST_DEPS)
143 testinput_DEPENDENCIES = $(TEST_DEPS)
144 testimage_DEPENDENCIES = $(TEST_DEPS)
145 testmenubars_DEPENDENCIES = $(TEST_DEPS)
146 testmountoperation_DEPENDENCIES = $(TEST_DEPS)
147 testmultidisplay_DEPENDENCIES = $(TEST_DEPS)
148 testmultiscreen_DEPENDENCIES = $(TEST_DEPS)
149 testnotebookdnd_DEPENDENCIES = $(TEST_DEPS)
150 testnouiprint_DEPENDENCIES = $(TEST_DEPS)
151 testoffscreen_DEPENDENCIES = $(TEST_DEPS)
152 testoffscreenwindow_DEPENDENCIES = $(TEST_DEPS)
153 testorientable_DEPENDENCIES = $(TEST_DEPS)
154 testprint_DEPENDENCIES = $(TEST_DEPS)
155 testrecentchooser_DEPENDENCIES = $(TEST_DEPS)
156 testrecentchoosermenu_DEPENDENCIES = $(TEST_DEPS)
157 testrgb_DEPENDENCIES = $(TEST_DEPS)
158 testrichtext_DEPENDENCIES = $(TEST_DEPS)
159 testscale_DEPENDENCIES = $(TEST_DEPS)
160 testselection_DEPENDENCIES = $(TEST_DEPS)
161 testsocket_DEPENDENCIES = $(DEPS)
162 testsocket_child_DEPENDENCIES = $(DEPS)
163 testspinbutton_DEPENDENCIES = $(TEST_DEPS)
164 teststatusicon_DEPENDENCIES = $(TEST_DEPS)
165 #testtext_DEPENDENCIES = $(TEST_DEPS)
166 testtreeedit_DEPENDENCIES = $(DEPS)
167 testtreemodel_DEPENDENCIES = $(DEPS)
168 testtreeview_DEPENDENCIES = $(DEPS)
169 testtreefocus_DEPENDENCIES = $(DEPS)
170 testtreeflow_DEPENDENCIES = $(DEPS)
171 testtreecolumns_DEPENDENCIES = $(DEPS)
172 testtreecolumnsizing_DEPENDENCIES = $(DEPS)
173 testtreesort_DEPENDENCIES = $(DEPS)
174 treestoretest_DEPENDENCIES = $(TEST_DEPS)
175 testxinerama_DEPENDENCIES = $(TEST_DEPS)
176 testmerge_DEPENDENCIES = $(TEST_DEPS)
177 testactions_DEPENDENCIES = $(TEST_DEPS)
178 testgrouping_DEPENDENCIES = $(TEST_DEPS)
179 testtooltips_DEPENDENCIES = $(TEST_DEPS)
180 testvolumebutton_DEPENDENCIES = $(TEST_DEPS)
181 testwindows_DEPENDENCIES = $(TEST_DEPS)
182 testexpander_DEPENDENCIES = $(TEST_DEPS)
183
184 flicker_LDADD = $(LDADDS)
185 simple_LDADD = $(LDADDS)
186 print_editor_LDADD = $(LDADDS)
187 testaccel_LDADD = $(LDADDS)
188 testapplication_LDADD = $(LDADDS)
189 testassistant_LDADD = $(LDADDS)
190 testbbox_LDADD = $(LDADDS)
191 testbuttons_LDADD = $(LDADDS)
192 testframe_LDADD = $(LDADDS)
193 testcairo_LDADD = $(LDADDS)
194 testcalendar_LDADD = $(LDADDS)
195 testcombo_LDADD = $(LDADDS)
196 testcombochange_LDADD = $(LDADDS)
197 testcellrenderertext_LDADD = $(LDADDS)
198 testclientmessage_LDADD = $(LDADDS)
199 testdnd_LDADD = $(LDADDS)
200 testellipsise_LDADD = $(LDADDS)
201 testentrycompletion_LDADD = $(LDADDS)
202 testentryicons_LDADD = $(LDADDS)
203 testfilechooser_LDADD = $(LDADDS)
204 testfilechooserbutton_LDADD = $(LDADDS)
205 testgtk_LDADD = $(LDADDS)
206 testheightforwidth_LDADD = $(LDADDS)
207 testicontheme_LDADD = $(LDADDS)
208 testiconview_LDADD = $(LDADDS)
209 testiconview_keynav_LDADD = $(LDADDS)
210 testinput_LDADD = $(LDADDS)
211 testimage_LDADD = $(LDADDS)
212 testmenubars_LDADD = $(LDADDS)
213 testmountoperation_LDADD = $(LDADDS)
214 testmultidisplay_LDADD = $(LDADDS)
215 testmultiscreen_LDADD = $(LDADDS)
216 testnotebookdnd_LDADD = $(LDADDS)
217 testnouiprint_LDADD = $(LDADDS)
218 testoffscreen_LDADD = $(LDADDS)
219 testoffscreenwindow_LDADD = $(LDADDS)
220 testorientable_LDADD = $(LDADDS)
221 testprint_LDADD = $(LDADDS)
222 testrecentchooser_LDADD = $(LDADDS)
223 testrecentchoosermenu_LDADD = $(LDADDS)
224 testrgb_LDADD = $(LDADDS)
225 testrichtext_LDADD = $(LDADDS)
226 testscale_LDADD = $(LDADDS)
227 testselection_LDADD = $(LDADDS)
228 testsocket_LDADD = $(LDADDS)
229 testsocket_child_LDADD = $(LDADDS)
230 testspinbutton_LDADD = $(LDADDS)
231 teststatusicon_LDADD = $(LDADDS)
232 testtoolbar_LDADD = $(LDADDS)
233 stresstest_toolbar_LDADD = $(LDADDS)
234 testtreeedit_LDADD = $(LDADDS)
235 testtreemodel_LDADD = $(LDADDS)
236 testtreeview_LDADD = $(LDADDS)
237 testtreefocus_LDADD = $(LDADDS)
238 testtreeflow_LDADD = $(LDADDS)
239 testtreecolumns_LDADD = $(LDADDS)
240 testtreecolumnsizing_LDADD = $(LDADDS)
241 testtreesort_LDADD = $(LDADDS)
242 #testtext_LDADD = $(LDADDS)
243 treestoretest_LDADD = $(LDADDS)
244 testxinerama_LDADD = $(LDADDS)
245 pixbuf_read_LDADD = $(LDADDS)
246 pixbuf_lowmem_LDADD = $(LDADDS)
247 pixbuf_randomly_modified_LDADD = $(LDADDS)
248 pixbuf_random_LDADD = $(LDADDS)
249 pixbuf_threads_LDADD = $(LDADDS) $(GLIB_LIBS)
250 testmerge_LDADD = $(LDADDS)
251 testactions_LDADD = $(LDADDS)
252 testgrouping_LDADD = $(LDADDS)
253 testtooltips_LDADD = $(LDADDS)
254 testvolumebutton_LDADD = $(LDADDS)
255 testwindows_LDADD = $(LDADDS)
256 testexpander_LDADD = $(LDADDS)
257
258 testentrycompletion_SOURCES =   \
259         prop-editor.c           \
260         testentrycompletion.c
261
262 testentryicons_SOURCES =        \
263         prop-editor.c           \
264         testentryicons.c
265
266 testfilechooser_SOURCES =       \
267         prop-editor.c           \
268         testfilechooser.c
269
270 testfilechooserbutton_SOURCES = \
271         prop-editor.c           \
272         testfilechooserbutton.c
273
274 testgtk_SOURCES =       \
275         prop-editor.c   \
276         testgtk.c
277
278 testtreeedit_SOURCES =  \
279         testtreeedit.c
280
281 testtreemodel_SOURCES = \
282         testtreemodel.c
283
284 testtreeview_SOURCES =  \
285         prop-editor.c   \
286         testtreeview.c
287
288 #testtext_SOURCES =     \
289 #       prop-editor.c   \
290 #       testtext.c
291
292 testtoolbar_SOURCES =   \
293         testtoolbar.c   \
294         prop-editor.c
295
296 testprint_SOURCES =     \
297         testprint.c             \
298         testprintfileoperation.h \
299         testprintfileoperation.c
300
301 testsocket_SOURCES =            \
302         testsocket.c            \
303         testsocket_common.c
304
305 testsocket_child_SOURCES =      \
306         testsocket_child.c      \
307         testsocket_common.c
308
309 testspinbutton_SOURCES =        \
310         testspinbutton.c
311
312 teststatusicon_SOURCES =        \
313         prop-editor.c           \
314         teststatusicon.c
315
316 testmerge_SOURCES =             \
317         testmerge.c
318
319 testactions_SOURCES =           \
320         testactions.c
321
322 testbbox_SOURCES =              \
323         testbbox.c
324
325 testbuttons_SOURCES =           \
326         testbuttons.c
327
328 testframe_SOURCES =             \
329         testframe.c
330
331 testiconview_SOURCES =          \
332         testiconview.c          \
333         prop-editor.c
334
335 testiconview_keynav_SOURCES =   \
336         testiconview-keynav.c
337
338 testrecentchooser_SOURCES =     \
339         prop-editor.c           \
340         testrecentchooser.c
341
342 testgrouping_SOURCES =          \
343         testgrouping.c
344
345 testtooltips_SOURCES =          \
346         testtooltips.c
347
348 testrecentchoosermenu_SOURCES = \
349         testrecentchoosermenu.c
350
351 testvolumebutton_SOURCES =      \
352         testvolumebutton.c
353
354 testoffscreen_SOURCES =         \
355         gtkoffscreenbox.c       \
356         gtkoffscreenbox.h       \
357         testoffscreen.c
358
359 testoffscreenwindow_SOURCES =   \
360         testoffscreenwindow.c
361
362 testwindows_SOURCES =   \
363         testwindows.c
364
365 testexpander_SOURCES = testexpander.c
366
367 EXTRA_DIST +=                   \
368         prop-editor.h           \
369         testgtk.1               \
370         testgtkrc               \
371         testgtkrc2              \
372         circles.xbm             \
373         3DRings.xpm             \
374         FilesQueue.xpm          \
375         Modeller.xpm            \
376         check-y.xpm             \
377         check-n.xpm             \
378         marble.xpm              \
379         test.xpm                \
380         check-y.xpm             \
381         check-n.xpm             \
382         test.xpm                \
383         merge-1.ui              \
384         merge-2.ui              \
385         merge-3.ui              \
386         gnome-textfile.png      \
387         makefile.msc
388
389
390 -include $(top_srcdir)/git.mk