umk: Makefile generation fixed issue with .bm

This commit is contained in:
Mirek Fidler 2025-01-16 12:14:48 +01:00
parent 546a9995c9
commit 3bc5035698

View file

@ -120,9 +120,9 @@ void CppBuilder::AddMakeFile(MakeFile& makefile, String package,
}
makefile.config << outdir << " = $(UPPOUT)"
<< GetMakePath(AdjustMakePath(String().Cat() << package << '/' << method << '-' << Join(x, "-") << '/')) << "\n"
<< GetMakePath(AdjustMakePath(String().Cat() << package << '/' << GetFileTitle(method) << '-' << Join(x, "-") << '/')) << "\n"
<< macros << " = " << macdef << "\n";
makefile.install << " \\\n\t$(" << outdir << ")";
makefile.rules << "$(" << outdir << "):\n\tmkdir -p $(" << outdir << ")\n\n";