forked from lc-soft/LCUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
54 lines (49 loc) · 1.37 KB
/
Makefile.am
File metadata and controls
54 lines (49 loc) · 1.37 KB
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
AUTOMAKE_OPTIONS=foreign
SUBDIRS=src build include
ACLOCAL_AMFLAGS=-I m4
pkgconfigdir = $(prefix)/lib/pkgconfig
pkgconfig_DATA = $(PACKAGE).pc
EXTRA_DIST=autogen.sh README README.zh-cn.md README.md LICENSE.TXT \
CHANGELOG.md CHANGELOG.zh-cn.md docs/FAQ.md \
docs/FAQ.zh-cn.md \
docs/CodingStyle.zh-cn.md \
test/README.zh-cn \
test/Makefile.in \
test/Makefile.am \
test/helloworld.c \
test/helloworld.css \
test/helloworld.xml \
test/test.c \
test/test.h \
test/test_touch.c \
test/test_string.c \
test/test_thread.c \
test/test_string_render.c \
test/test_widget_render.c \
test/test_char_render.c \
test/test_css_parser.css \
test/test_css_parser.xml \
test/test_css_parser.c \
test/test_xml_parser.xml \
test/test_xml_parser.c \
test/test_font_load.c \
test/test_font_load.css \
test/test_font_load.ttf \
test/test_image_reader.c \
test/test_image_reader.bmp \
test/test_image_reader.jpg \
test/test_image_reader.png \
test/test_widget_layout.c \
test/test_widget_layout.css \
test/test_widget_layout.xml \
test/test_widget_flex_layout.c \
test/test_widget_flex_layout.css \
test/test_widget_flex_layout.xml \
test/test_widget_inline_block_layout.c \
test/test_widget_inline_block_layout.css \
test/test_widget_inline_block_layout.xml \
test/test_widget_rect.c
.PHONY: test
test:
cd test && make && ./test && valgrind --leak-check=full --error-exitcode=42 .libs/lt-test
@CODE_COVERAGE_RULES@