Initial community commit
This commit is contained in:
21
Src/external_dependencies/openmpt-trunk/include/premake/src/actions/clean/_clean.lua
vendored
Normal file
21
Src/external_dependencies/openmpt-trunk/include/premake/src/actions/clean/_clean.lua
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
--
|
||||
-- _clean.lua
|
||||
-- The "clean" action: removes all generated files.
|
||||
-- Copyright (c) 2002-2012 Jason Perkins and the Premake project
|
||||
--
|
||||
|
||||
premake.clean = {}
|
||||
|
||||
|
||||
--
|
||||
-- Register the "clean" action.
|
||||
--
|
||||
|
||||
newaction {
|
||||
trigger = "clean",
|
||||
description = "Remove all binaries and generated files",
|
||||
|
||||
execute = function()
|
||||
print("** The clean action has not yet been ported")
|
||||
end
|
||||
}
|
||||
Reference in New Issue
Block a user