blob: e90b85a610fc6aec1dab2fdb62530e63f252927f (
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
|
NULL=
INCLUDES =\
-I$(top_srcdir) \
$(NAUTILUS_PRIVATE_CFLAGS) \
-DVERSION="\"$(VERSION)\"" \
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
-DNAUTILUS_DATADIR=\""$(datadir)/nautilus"\" \
$(NULL)
LDADD =\
$(top_builddir)/libnautilus/libnautilus.la \
$(top_builddir)/libnautilus-private/libnautilus-private.la \
$(NAUTILUS_PRIVATE_LIBS) \
$(NULL)
noinst_PROGRAMS =\
test-nautilus-async-activation \
test-nautilus-mime-actions \
test-nautilus-mime-actions-set \
test-nautilus-preferences-change \
test-nautilus-preferences-display \
test-nautilus-smooth-graphics \
test-nautilus-wrap-table \
$(NULL)
test_nautilus_async_activation_SOURCES = test-nautilus-async-activation.c test.c
test_nautilus_mime_actions_SOURCES = test-nautilus-mime-actions.c test.c
test_nautilus_mime_actions_set_SOURCES = test-nautilus-mime-actions-set.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.c
test_nautilus_wrap_table_SOURCES = test-nautilus-wrap-table.c test.c
EXTRA_DIST = \
test.h \
$(NULL)
|