mirror of
https://github.com/Adorable-Catgirl/Zorya-NEO.git
synced 2024-11-13 14:08:07 +11:00
17 lines
285 B
Lua
17 lines
285 B
Lua
task("clean", function()
|
|
os.execute("mkdir -p pkg")
|
|
os.execute("rm -rf pkg/*")
|
|
|
|
os.execute("mkdir -p release")
|
|
os.execute("rm -rf release/*")
|
|
end)
|
|
|
|
task("all", function()
|
|
dep("dirs")
|
|
dep("bios")
|
|
dep("allmods")
|
|
dep("alllibs")
|
|
dep("makepkg")
|
|
dep("installer")
|
|
dep("utils")
|
|
end) |