File: Makefile.am

package info (click to toggle)
cutter-testing-framework 1.1.7-1.2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 18,556 kB
  • sloc: ansic: 79,864; xml: 38,680; sh: 10,266; makefile: 2,324; ruby: 845; cpp: 697
file content (58 lines) | stat: -rw-r--r-- 1,796 bytes parent folder | download
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
INCLUDES = 					\
	-I$(top_builddir)			\
	-I$(top_srcdir)				\
	-I$(top_srcdir)/cutter			\
	-I$(top_srcdir)/gcutter			\
	-I$(top_srcdir)/test/lib

AM_CFLAGS = $(CUTTER_CFLAGS)

CLEANFILES = *.gcno *.gcda

check_LTLIBRARIES = 			\
	test-gcut-assertions.la		\
	test-gcut-assertions-helper.la	\
	test-gcut-test-utils.la		\
	test-gcut-hash-table.la		\
	test-gcut-enum.la		\
	test-gcut-object.la		\
	test-gcut-list.la		\
	test-gcut-string.la		\
	test-gcut-string-io-channel.la	\
	test-gcut-egg.la		\
	test-gcut-process.la		\
	test-gcut-io.la			\
	test-gcut-key-file.la		\
	test-gcut-inspect.la		\
	test-gcut-dynamic-data.la	\
	test-gcut-value-equal.la	\
	test-gcut-types.la

AM_LDFLAGS =			\
	-module			\
	-rpath `pwd`/.libs	\
	-avoid-version		\
	-no-undefined

LIBS =							\
	$(top_builddir)/cutter/libcutter.la		\
	$(top_builddir)/test/lib/libcuttest-utils.la	\
	$(GLIB_LIBS)

test_gcut_assertions_la_SOURCES		= test-gcut-assertions.c
test_gcut_assertions_helper_la_SOURCES	= test-gcut-assertions-helper.c
test_gcut_test_utils_la_SOURCES		= test-gcut-test-utils.c
test_gcut_hash_table_la_SOURCES		= test-gcut-hash-table.c
test_gcut_enum_la_SOURCES		= test-gcut-enum.c
test_gcut_object_la_SOURCES		= test-gcut-object.c
test_gcut_list_la_SOURCES		= test-gcut-list.c
test_gcut_string_la_SOURCES		= test-gcut-string.c
test_gcut_string_io_channel_la_SOURCES	= test-gcut-string-io-channel.c
test_gcut_egg_la_SOURCES		= test-gcut-egg.c
test_gcut_process_la_SOURCES		= test-gcut-process.c
test_gcut_io_la_SOURCES			= test-gcut-io.c
test_gcut_key_file_la_SOURCES		= test-gcut-key-file.c
test_gcut_inspect_la_SOURCES		= test-gcut-inspect.c
test_gcut_dynamic_data_la_SOURCES	= test-gcut-dynamic-data.c
test_gcut_value_equal_la_SOURCES	= test-gcut-value-equal.c
test_gcut_types_la_SOURCES		= test-gcut-types.c