-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmakefile
More file actions
37 lines (29 loc) · 810 Bytes
/
makefile
File metadata and controls
37 lines (29 loc) · 810 Bytes
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
# Flash c++ compile Make file
# 20160803
#
# ----------------------------------------------------------------
# OSX System Platform:
#
# project directory:
# ~/Documents/flash_cpp/liblua
# Flash C++ Compile SDK directory:
# ~/Documents/flash_cpp_sdk/flascc/sdk
# ~/Documents/flash_cpp_sdk/flex/sdk
#
LUA_VERSION_PATH = lua-5.3.2
#
FLASCC_SDK = X
FLEX_SDK = X
flash: check
@echo "-----------------------"
@echo "The $(OS_PLATFORM) platform: compile starting ..."
@echo "-----------------------"
cd $(LUA_VERSION_PATH) && make flash $(MAKEFILE_COMMAND)
@echo "The $(OS_PLATFORM) platform: compile ending ..."
@echo "-----------------------"
echo:
cd $(LUA_VERSION_PATH) && make echo $(MAKEFILE_COMMAND)
clean:
cd $(LUA_VERSION_PATH) && make clean $(MAKEFILE_COMMAND)
#
include common.makefile