blob: fe41515197f5ab3c497149dfd095f5cc53ba9f8a (
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
94
95
96
97
98
99
100
101
102
103
104
|
NULL=
INCLUDES =\
-I$(top_srcdir) \
-I$(top_builddir) \
-I$(top_builddir)/libnautilus \
-I$(top_srcdir)/cut-n-paste-code\
$(BONOBO_CFLAGS) \
$(OAF_CFLAGS) \
$(GCONF_CFLAGS) \
$(GNOMEUI_CFLAGS) \
$(VFS_CFLAGS) \
$(XML_CFLAGS) \
-DVERSION="\"$(VERSION)\"" \
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
-DNAUTILUS_DATADIR=\""$(datadir)/nautilus"\" \
$(NULL)
# -DBACKGROUNDS_DIR=\""$(top_srcdir)/data/backgrounds"\" \
LDADD =\
$(top_builddir)/libnautilus/libnautilus.la \
$(top_builddir)/libnautilus-extensions/libnautilus-extensions.la \
$(BONOBO_LIBS) \
$(OAF_LIBS) \
$(GCONF_LIBS) \
$(GNOMEUI_LIBS) \
$(VFS_LIBS) \
$(XML_LIBS) \
$(NULL)
noinst_PROGRAMS =\
test-nautilus-async-activation \
test-nautilus-background \
test-nautilus-clickable-image \
test-nautilus-font \
test-nautilus-font-picker \
test-nautilus-font-simple \
test-nautilus-font-manager \
test-nautilus-glyph \
test-nautilus-glyph-simple \
test-nautilus-image \
test-nautilus-image-background \
test-nautilus-image-scrolled \
test-nautilus-image-simple \
test-nautilus-image-table \
test-nautilus-image-tile \
test-nautilus-label \
test-nautilus-label-background \
test-nautilus-label-flavorful \
test-nautilus-label-offset \
test-nautilus-label-scrolled \
test-nautilus-label-simple \
test-nautilus-label-wrapped \
test-nautilus-labeled-image \
test-nautilus-mime-actions \
test-nautilus-mime-actions-set \
test-nautilus-password-dialog \
test-nautilus-pixbuf-tile \
test-nautilus-preferences-change \
test-nautilus-preferences-display \
test-nautilus-smooth-graphics \
test-nautilus-smooth-text-layout \
test-nautilus-widgets \
test-nautilus-wrap-table \
test-nautilus-viewport-constraint \
$(NULL)
test_nautilus_async_activation_SOURCES = test-nautilus-async-activation.c
test_nautilus_background_SOURCES = test-nautilus-background.c
test_nautilus_clickable_image_SOURCES = test-nautilus-clickable-image.c test.c
test_nautilus_font_SOURCES = test-nautilus-font.c test.c
test_nautilus_font_picker_SOURCES = test-nautilus-font-picker.c test.c
test_nautilus_font_simple_SOURCES = test-nautilus-font-simple.c test.c
test_nautilus_font_manager_SOURCES = test-nautilus-font-manager.c test.c
test_nautilus_glyph_SOURCES = test-nautilus-glyph.c test.c
test_nautilus_glyph_simple_SOURCES = test-nautilus-glyph-simple.c test.c
test_nautilus_image_SOURCES = test-nautilus-image.c
test_nautilus_image_background_SOURCES = test-nautilus-image-background.c test.c
test_nautilus_image_scrolled_SOURCES = test-nautilus-image-scrolled.c test.c
test_nautilus_image_simple_SOURCES = test-nautilus-image-simple.c
test_nautilus_image_table_SOURCES = test-nautilus-image-table.c test.c
test_nautilus_image_tile_SOURCES = test-nautilus-image-tile.c test.c
test_nautilus_label_SOURCES = test-nautilus-label.c
test_nautilus_label_background_SOURCES = test-nautilus-label-background.c test.c
test_nautilus_label_flavorful_SOURCES = test-nautilus-label-flavorful.c
test_nautilus_label_offset_SOURCES = test-nautilus-label-offset.c test.c
test_nautilus_label_scrolled_SOURCES = test-nautilus-label-scrolled.c test.c
test_nautilus_label_simple_SOURCES = test-nautilus-label-simple.c test.c
test_nautilus_label_wrapped_SOURCES = test-nautilus-label-wrapped.c
test_nautilus_labeled_image_SOURCES = test-nautilus-labeled-image.c test.c
test_nautilus_mime_actions_SOURCES = test-nautilus-mime-actions.c
test_nautilus_mime_actions_set_SOURCES = test-nautilus-mime-actions-set.c
test_nautilus_password_dialog_SOURCES = test-nautilus-password-dialog.c
test_nautilus_pixbuf_tile_SOURCES = test-nautilus-pixbuf-tile.c test.c
test_nautilus_preferences_change_SOURCES = test-nautilus-preferences-change.c test.c
test_nautilus_preferences_display_SOURCES = test-nautilus-preferences-display.c test.c
test_nautilus_smooth_graphics_SOURCES = test-nautilus-smooth-graphics.c
test_nautilus_smooth_text_layout_SOURCES = test-nautilus-smooth-text-layout.c test.c
test_nautilus_widgets_SOURCES = test-nautilus-widgets.c
test_nautilus_wrap_table_SOURCES = test-nautilus-wrap-table.c test.c
EXTRA_DIST = \
test.h \
$(NULL)
|