File tree 3 files changed +20
-11
lines changed
3 files changed +20
-11
lines changed Original file line number Diff line number Diff line change 4
4
* .a
5
5
demo- *
6
6
.demo- *
7
+ perf_tester
8
+ .perf_tester
7
9
8
10
# Swap
9
11
[._ ]* .s [a-v ][a-z ]
Original file line number Diff line number Diff line change @@ -110,17 +110,20 @@ libtwin.a_files-y += backend/fbdev.c
110
110
libtwin.a_files-y += backend/linux_input.c
111
111
endif
112
112
113
- # Standalone application
113
+ # Performance tester
114
+
114
115
ifeq ($(CONFIG_PERFORMANCE_TEST ) , y)
115
- target-y += demo- $( BACKEND )
116
- demo-$(BACKEND)_depends -y += $(target.a-y )
117
- demo-$(BACKEND)_files-y = apps/perf.c
118
- demo-$(BACKEND)_includes -y := include
119
- demo-$(BACKEND)_ldflags -y := \
116
+ target-$(CONFIG_PERFORMANCE_TEST) += perf_tester
117
+ perf_tester_depends -y += $(target.a-y )
118
+ perf_tester_files-y + = apps/perf.c
119
+ perf_tester_includes -y := include
120
+ perf_tester_ldflags -y := \
120
121
$(target.a-y ) \
121
122
$(TARGET_LIBS )
122
123
endif
123
124
125
+ # Standalone application
126
+
124
127
ifeq ($(CONFIG_DEMO_APPLICATIONS ) , y)
125
128
target-y += demo-$(BACKEND )
126
129
demo-$(BACKEND)_depends-y += $(target.a-y )
Original file line number Diff line number Diff line change @@ -58,15 +58,19 @@ config LOADER_GIF
58
58
59
59
endmenu
60
60
61
- choice
62
- prompt "Application Selection"
63
- default DEMO_APPLICATIONS
61
+ menu "Performance Testers"
64
62
65
63
config PERFORMANCE_TEST
66
- bool "Built performance test"
64
+ bool "Build composite tester"
65
+ default y
66
+
67
+ endmenu
68
+
69
+ menu "Demo Applications"
67
70
68
71
config DEMO_APPLICATIONS
69
72
bool "Build demo applications"
73
+ default y
70
74
71
75
config DEMO_MULTI
72
76
bool "Build multi demo"
@@ -102,4 +106,4 @@ config DEMO_ANIMATION
102
106
bool "Build animation demo"
103
107
default y
104
108
depends on DEMO_APPLICATIONS
105
- endchoice
109
+ endmenu
You can’t perform that action at this time.
0 commit comments