Attempt to correct file system case sensitivity.

This commit is contained in:
David Given 2017-08-06 11:15:53 +02:00
parent 6c6222cc66
commit a1043bc5fe
16 changed files with 12 additions and 12 deletions

View file

@ -31,8 +31,8 @@ normalrule {
}
}
for _, f in ipairs(filenamesof("./*.H")) do
local name = replace(basename(f), "%.H$", "")
for _, f in ipairs(filenamesof("./*.xh")) do
local name = replace(basename(f), "%.xh$", "")
normalrule {
name = name.."_h",
ins = {
@ -46,8 +46,8 @@ for _, f in ipairs(filenamesof("./*.H")) do
}
end
for _, f in ipairs(filenamesof("./*.C")) do
local name = replace(basename(f), "%.C$", "")
for _, f in ipairs(filenamesof("./*.xc")) do
local name = replace(basename(f), "%.xc$", "")
normalrule {
name = name.."_c",
ins = {
@ -65,8 +65,8 @@ normalrule {
name = "next_c",
ins = {
"./make.next",
"./*.H",
"./*.C",
"./*.xh",
"./*.xc",
},
outleaves = { "next.c" },
commands = {

View file

@ -31,8 +31,8 @@ normalrule {
}
}
for _, f in ipairs(filenamesof("./*.H")) do
local name = replace(basename(f), "%.H$", "")
for _, f in ipairs(filenamesof("./*.xh")) do
local name = replace(basename(f), "%.xh$", "")
normalrule {
name = name.."_h",
ins = {
@ -46,8 +46,8 @@ for _, f in ipairs(filenamesof("./*.H")) do
}
end
for _, f in ipairs(filenamesof("./*.C")) do
local name = replace(basename(f), "%.C$", "")
for _, f in ipairs(filenamesof("./*.xc")) do
local name = replace(basename(f), "%.xc$", "")
normalrule {
name = name.."_c",
ins = {
@ -65,8 +65,8 @@ normalrule {
name = "next_c",
ins = {
"./make.next",
"./*.H",
"./*.C",
"./*.xh",
"./*.xc",
},
outleaves = { "next.c" },
commands = {