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 (56 lines) | stat: -rw-r--r-- 1,189 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
INCLUDES = 			\
	-I$(top_builddir)	\
	-I$(top_srcdir)		\
	-I$(top_srcdir)/cutter	\
	-I$(top_srcdir)/gcutter

AM_CFLAGS = $(CUTTER_CFLAGS)

EXTRA_DIST =			\
	run-test.sh		\
	iochannel-test-infile

if MAINTAINER_MODE
TESTS = run-test.sh
endif
TESTS_ENVIRONMENT = NO_MAKE=yes

noinst_LTLIBRARIES = 			\
		test_array.la		\
		test_atomic.la		\
		test_base64.la		\
		test_iochannel.la	\
		test_keyfile.la		\
		test_option.la		\
		test_thread.la		\
		test_utf8_pointer.la	\
		test_utf8_validate.la	\
		test_uri.la

if !GLIB_2_12
noinst_LTLIBRARIES +=			\
	test_regex.la
endif

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

LIBS =						\
	$(top_builddir)/cutter/libcutter.la	\
	$(GLIB_LIBS)

test_array_la_SOURCES = array.c
test_atomic_la_SOURCES = atomic.c
test_base64_la_SOURCES = base64.c
test_iochannel_la_SOURCES = iochannel.c
test_keyfile_la_SOURCES = keyfile.c
test_option_la_SOURCES = option.c
test_regex_la_SOURCES = regex.c
test_thread_la_SOURCES = thread.c
test_thread_la_CFLAGS = $(AM_CFLAGS) $(NO_STRICT_ALIASING_CFLAGS)
test_uri_la_SOURCES = uri.c
test_utf8_pointer_la_SOURCES = utf8-pointer.c
test_utf8_validate_la_SOURCES = utf8-validate.c