switch build system to Tup
git-svn-id: svn://kolibrios.org@5098 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2
programs/hd_load/meosload/Tupfile.lua
Normal file
2
programs/hd_load/meosload/Tupfile.lua
Normal file
@@ -0,0 +1,2 @@
|
||||
if tup.getconfig("NO_FASM") ~= "" then return end
|
||||
tup.rule("MeOSload.asm", "fasm %f %o", "MeOSload.com")
|
2
programs/hd_load/mtldr/Tupfile.lua
Normal file
2
programs/hd_load/mtldr/Tupfile.lua
Normal file
@@ -0,0 +1,2 @@
|
||||
if tup.getconfig("NO_FASM") ~= "" then return end
|
||||
tup.rule("mtldr.asm", "fasm %f %o", "mtldr")
|
3
programs/hd_load/mtldr_install/Tupfile.lua
Normal file
3
programs/hd_load/mtldr_install/Tupfile.lua
Normal file
@@ -0,0 +1,3 @@
|
||||
if tup.getconfig("NO_FASM") ~= "" then return end
|
||||
tup.rule("mtldr_code/mtldr.asm", "fasm %f %o", "mtldr_for_installer")
|
||||
tup.rule({"mtldr_install.asm", extra_inputs = {"mtldr_for_installer"}}, "fasm %f %o", "mtldr_install.exe")
|
5
programs/hd_load/usb_boot/Tupfile.lua
Normal file
5
programs/hd_load/usb_boot/Tupfile.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
if tup.getconfig("NO_FASM") ~= "" then return end
|
||||
tup.rule("setmbr.asm", "fasm %f %o", "setmbr.exe")
|
||||
tup.rule("inst.asm", "fasm %f %o", "inst.exe")
|
||||
tup.rule("BOOT_F32.ASM", "fasm %f %o", "BOOT_F32.BIN")
|
||||
tup.rule("mtldr.asm", "fasm %f %o", "MTLD_F32")
|
3
programs/hd_load/usb_boot_old/Tupfile.lua
Normal file
3
programs/hd_load/usb_boot_old/Tupfile.lua
Normal file
@@ -0,0 +1,3 @@
|
||||
if tup.getconfig("NO_FASM") ~= "" then return end
|
||||
tup.rule("MeOSload.asm", "fasm %f %o", "MeOSload.com")
|
||||
tup.rule("enable.asm", "fasm %f %o", "enable.exe")
|
Reference in New Issue
Block a user