forked from Samsung/libtuv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.mbedk64f
98 lines (75 loc) · 2.59 KB
/
Makefile.mbedk64f
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Copyright 2015 Samsung Electronics Co., Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
TARGET_DIR ?= /media/$(USER)/MBED
BUILD_TYPE ?= debug
YOTTA_BUILD_OPT = --debug-build
ifneq ($(BUILD_TYPE),debug)
YOTTA_BUILD_OPT :=
BUILD_TYPE := release
endif
#
# please use one of 3 options for building: (none) apiemul flash
# other options are for sub unit of build but you can use them.
#
# make -f Makefile.mbedk64f
# build tuv library for mbed k64f and unit function test program
# as "tuvtester"
#
# make -f Makefile.mbedk64f apiemul
# build tuv library for mbed k64f and system api emulation test program
# as "tuvtester"
#
# make -f Makefile.mbedk64f flash
# flash (copy to mount folder) "tuvtester"
#
# set "TARGET_DIR" if MBED mount folder is somewhere else.
# set "BUILD_TYPE" to "release" if you want to build RELEASE build.
#
.phony: all
# tuv and tuvtester
all: hosthelper tuv yotta
# api emulation tester: socket, file
apiemul: apiemultester yotta
#-----------------------------------------------------------------------------
# libtuv and tuvtester
tuv:
TUV_PLATFORM=arm-mbed TUV_BOARD=mbedk64f \
TUV_BUILD_TYPE=$(BUILD_TYPE) make
# yotta binary build
yotta:
cd targets/mbedk64f; yotta build $(YOTTA_BUILD_OPT)
# flash to mbed board. binary should be always 'tuvtester'
flash: check_mbed
cp targets/mbedk64f/build/frdm-k64f-gcc/source/tuvtester.bin \
"$(TARGET_DIR)/."
@echo "Wait till LED flashing stops..."
#-----------------------------------------------------------------------------
# libtuv and api emulator tester
apiemultester:
TUV_PLATFORM=arm-mbed TUV_BOARD=mbedk64f \
TUV_BUILD_TYPE=$(BUILD_TYPE) TUV_BUILDTESTER=no \
TUV_BUILDAPIEMULTESTER=yes make
#-----------------------------------------------------------------------------
# host executable helper
hosthelper:
TUV_BUILDHOSTHELPER=yes make
#-----------------------------------------------------------------------------
check_mbed:
@if [ ! -d "${TARGET_DIR}" ] ; then \
echo "MBED not mounted at ${TARGET_DIR}"; \
exit 1; \
fi
clean:
TUV_PLATFORM=arm-mbed TUV_BOARD=mbedk64f make clean
rm -rf targets/mbedk64f/build/*