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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
--!A cross-platform build utility based on Lua
--
-- 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.
--
-- Copyright (C) 2015-present, Xmake Open Source Community.
--
-- @author ruki
-- @file xmakefile.lua
--
-- imports
import("core.project.project")
-- make head
function _make_head(makefile)
-- verbose?
makefile:print("ifeq (%$(V),1)")
makefile:print("VERBOSE=-v")
makefile:print("else")
makefile:print("VERBOSE=")
makefile:print("endif")
makefile:print("")
-- diagnosis?
makefile:print("ifeq (%$(D),1)")
makefile:print("DIAGNOSIS=-D")
makefile:print("else")
makefile:print("DIAGNOSIS=")
makefile:print("endif")
makefile:print("")
end
-- make build
function _make_build(makefile)
makefile:print(".PHONY: build")
makefile:print("")
makefile:print("build: ")
makefile:print("\t@xmake --build %$(VERBOSE) %$(DIAGNOSIS) %$(TARGET)")
makefile:print("")
end
-- make rebuild
function _make_rebuild(makefile)
makefile:print("rebuild: ")
makefile:print("\t@xmake --rebuild %$(VERBOSE) %$(DIAGNOSIS) %$(TARGET)")
makefile:print("")
end
-- make install
function _make_install(makefile)
makefile:print("install: ")
makefile:print("\t@xmake install %$(VERBOSE) %$(DIAGNOSIS) %$(TARGET)")
makefile:print("")
end
-- make uninstall
function _make_uninstall(makefile)
makefile:print("uninstall: ")
makefile:print("\t@xmake uninstall %$(VERBOSE) %$(DIAGNOSIS) %$(TARGET)")
makefile:print("")
end
-- make package
function _make_package(makefile)
makefile:print("package: ")
makefile:print("\t@xmake package %$(VERBOSE) %$(DIAGNOSIS) %$(TARGET)")
makefile:print("")
end
-- make clean
function _make_clean(makefile)
makefile:print("clean: ")
makefile:print("\t@xmake clean %$(VERBOSE) %$(DIAGNOSIS) %$(TARGET)")
makefile:print("")
end
-- make run
function _make_run(makefile)
makefile:print("run: ")
makefile:print("\t@xmake run %$(VERBOSE) %$(DIAGNOSIS) %$(TARGET)")
makefile:print("")
end
-- make debug
function _make_debug(makefile)
makefile:print("debug: ")
makefile:print("\t@xmake run -d %$(VERBOSE) %$(DIAGNOSIS) %$(TARGET)")
makefile:print("")
end
-- make config
function _make_config(makefile)
makefile:print("ifneq (%$(PLAT),)")
makefile:print("ifneq (%$(ARCH),)")
makefile:print("ifneq (%$(MODE),)")
makefile:print("CONFIG=xmake config -c %$(VERBOSE) %$(DIAGNOSIS) -p %$(PLAT) -a %$(ARCH) -m %$(MODE) %$(TARGET)")
makefile:print("else")
makefile:print("CONFIG=xmake config -c %$(VERBOSE) %$(DIAGNOSIS) -p %$(PLAT) -a %$(ARCH) %$(TARGET)")
makefile:print("endif")
makefile:print("else")
makefile:print("CONFIG=xmake config -c %$(VERBOSE) %$(DIAGNOSIS) -p %$(PLAT) %$(TARGET)")
makefile:print("endif")
makefile:print("else")
makefile:print("CONFIG=xmake config -c %$(VERBOSE) %$(DIAGNOSIS) %$(TARGET)")
makefile:print("endif")
makefile:print("config: ")
makefile:print("\t@%$(CONFIG)")
makefile:print("")
end
-- make
function make(outputdir)
-- enter project directory
local oldir = os.cd(os.projectdir())
-- open the makefile
local makefile = io.open(path.join(outputdir, "makefile"), "w")
-- make head
_make_head(makefile)
-- make build
_make_build(makefile)
-- make rebuild
_make_rebuild(makefile)
-- make install
_make_install(makefile)
-- make uninstall
_make_uninstall(makefile)
-- make package
_make_package(makefile)
-- make clean
_make_clean(makefile)
-- make run
_make_run(makefile)
-- make debug
_make_debug(makefile)
-- make config
_make_config(makefile)
-- close the makefile
makefile:close()
-- leave project directory
os.cd(oldir)
end
|