blob: 084a57caefe1dadcc82fea907b6234e7e0e28dec (
plain)
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
|
--!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 main.lua
--
-- imports
import("core.base.option")
import("private.action.clean.remove_files")
import("private.cache.build_cache")
-- the builtin clean main entry
function main(target)
-- is phony?
if target:is_phony() then
return
end
-- remove the target file
local targetfile = target:targetfile()
remove_files(targetfile)
-- remove import library of the target file
-- @see https://github.com/xmake-io/xmake/issues/3052
if target:is_shared() then
if target:is_plat("windows") then
local implibfile = target:artifactfile("implib")
local expfile = path.join(path.directory(implibfile), path.basename(targetfile) .. ".exp")
if os.isfile(implibfile) then
remove_files(implibfile)
end
if os.isfile(expfile) then
remove_files(expfile)
end
end
if target:is_plat("mingw") then
local implibfile = target:artifactfile("implib")
if os.isfile(implibfile) then
remove_files(implibfile)
end
end
end
-- remove the symbol file
remove_files(target:symbolfile())
-- remove the c/c++ precompiled header file
remove_files(target:pcoutputfile("c"))
remove_files(target:pcoutputfile("cxx"))
-- remove the clean files
remove_files(target:get("cleanfiles"))
-- remove all?
if option.get("all") then
-- remove config files
local _, configfiles = target:configfiles()
remove_files(configfiles)
-- remove all dependent files for each platform
remove_files(target:dependir({root = true}))
-- remove all object files for each platform
remove_files(target:objectdir({root = true}))
-- remove all autogen files for each platform
remove_files(target:autogendir({root = true}))
-- clean build cache
build_cache.clean()
else
-- remove dependent files for the current platform
remove_files(target:dependir())
-- remove object files for the current platform
remove_files(target:objectdir())
-- remove autogen files for the current platform
remove_files(target:autogendir())
end
end
|