File: Makefile.am

package info (click to toggle)
libview 0.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,980 kB
  • ctags: 614
  • sloc: sh: 9,131; cpp: 3,082; ansic: 992; makefile: 114; perl: 67
file content (57 lines) | stat: -rw-r--r-- 1,126 bytes parent folder | download | duplicates (4)
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
noinst_PROGRAMS = \
	test-auto-drawer \
	test-content-box \
	test-dead-entry \
	test-drawer \
	test-field-entry \
	test-header-bgbox \
	test-ip-entry \
	test-ovBox \
	test-wrap-label


common_ldflags = \
	$(top_builddir)/libview/libview.la \
	$(VIEW_LIBS)


test_auto_drawer_SOURCES = test-auto-drawer.cc
test_auto_drawer_LDADD   = $(common_ldflags)


test_content_box_SOURCES = test-content-box.cc
test_content_box_LDADD   = $(common_ldflags)


test_dead_entry_SOURCES = test-dead-entry.cc
test_dead_entry_LDADD   = $(common_ldflags)


test_drawer_SOURCES = test-drawer.cc
test_drawer_LDADD   = $(common_ldflags)


test_field_entry_SOURCES = test-field-entry.cc
test_field_entry_LDADD   = $(common_ldflags)


test_header_bgbox_SOURCES = test-header-bgbox.cc
test_header_bgbox_LDADD   = $(common_ldflags)


test_ip_entry_SOURCES = test-ip-entry.cc
test_ip_entry_LDADD   = $(common_ldflags)


test_ovBox_SOURCES = test-ovBox.cc
test_ovBox_LDADD   = $(common_ldflags)


test_wrap_label_SOURCES = test-wrap-label.cc
test_wrap_label_LDADD   = $(common_ldflags)


INCLUDES = \
	-I$(top_srcdir) \
	$(VIEW_CFLAGS) \
	$(DEBUG_CFLAGS)