This commit is contained in:
Nishi 2026-05-09 03:16:12 +09:00
commit d951a0bceb
Signed by: nishi
GPG key ID: 27EF69B208EB9343
15 changed files with 381 additions and 90 deletions

View file

@ -1,6 +1,8 @@
const Watcom = pmake.inherit(pmake.Compiler);
(function() {
const Watcom = new pmake.Compiler();
Watcom.target = "Watcom";
Watcom.description = "Open Watcom";
pmake.register(Watcom);
})();