File: Makefile.am

package info (click to toggle)
exo 0.6.2-5
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 9,696 kB
  • sloc: ansic: 22,617; sh: 11,230; makefile: 913; xml: 629; python: 402; perl: 239
file content (96 lines) | stat: -rw-r--r-- 2,340 bytes parent folder | download | duplicates (2)
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

SUBDIRS =								\
	data

INCLUDES =								\
	-I$(top_srcdir)							\
	-DG_LOG_DOMAIN=\"exo-tests\"

TESTS =									\
	test-exo-csource						\
	test-exo-noop							\
	test-exo-string

check_PROGRAMS =							\
	test-exo-csource						\
	test-exo-noop							\
	test-exo-string							\
	test-exo-icon-chooser-dialog					\
	test-exo-wrap-table

test_exo_csource_SOURCES =						\
	test-exo-csource.c						\
	test-exo-csource-data.c

test_exo_csource_CFLAGS =						\
	$(GLIB_CFLAGS)

test_exo_csource_LDADD =						\
	$(GLIB_LIBS)

test_exo_noop_SOURCES =							\
	test-exo-noop.c

test_exo_noop_CFLAGS =							\
	$(GTK_CFLAGS)							\
	$(LIBXFCE4UTIL_CFLAGS)

test_exo_noop_DEPENDENCIES =						\
	$(top_builddir)/exo/libexo-$(LIBEXO_VERSION_API).la

test_exo_noop_LDADD =							\
	$(GLIB_LIBS)							\
	$(top_builddir)/exo/libexo-$(LIBEXO_VERSION_API).la

test_exo_string_SOURCES =						\
	test-exo-string.c

test_exo_string_CFLAGS =						\
	$(GTK_CFLAGS)							\
	$(LIBXFCE4UTIL_CFLAGS)

test_exo_string_DEPENDENCIES =						\
	$(top_builddir)/exo/libexo-$(LIBEXO_VERSION_API).la

test_exo_string_LDADD =							\
	$(GLIB_LIBS)							\
	$(top_builddir)/exo/libexo-$(LIBEXO_VERSION_API).la

test_exo_icon_chooser_dialog_SOURCES =					\
	test-exo-icon-chooser-dialog.c

test_exo_icon_chooser_dialog_CFLAGS =					\
	$(GTK_CFLAGS)							\
	$(LIBXFCE4UTIL_CFLAGS)

test_exo_icon_chooser_dialog_DEPENDENCIES =				\
	$(top_builddir)/exo/libexo-$(LIBEXO_VERSION_API).la

test_exo_icon_chooser_dialog_LDADD =					\
	$(GTK_LIBS)							\
	$(top_builddir)/exo/libexo-$(LIBEXO_VERSION_API).la

test_exo_wrap_table_SOURCES =						\
	test-exo-wrap-table.c

test_exo_wrap_table_CFLAGS =						\
	$(GTK_CFLAGS)							\
	$(LIBXFCE4UTIL_CFLAGS)

test_exo_wrap_table_DEPENDENCIES =					\
	$(top_builddir)/exo/libexo-$(LIBEXO_VERSION_API).la

test_exo_wrap_table_LDADD =						\
	$(GTK_LIBS)							\
	$(top_builddir)/exo/libexo-$(LIBEXO_VERSION_API).la

DISTCLEANFILES = test-exo-csource-data.c
BUILT_SOURCES = test-exo-csource-data.c

test-exo-csource-data.c: Makefile $(srcdir)/data/data.bin $(srcdir)/data/data.txt
	$(top_builddir)/exo-csource/exo-csource --extern --build-list data_bin $(srcdir)/data/data.bin data_txt $(srcdir)/data/data.txt > test-exo-csource-data.c

clean-local:
	rm -f *.core core core.*

# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: