forked from pyrite-dev/pmake
things
This commit is contained in:
parent
c89f96ce8a
commit
d951a0bceb
15 changed files with 381 additions and 90 deletions
|
|
@ -1,6 +1,8 @@
|
|||
const GCC = pmake.inherit(pmake.Compiler);
|
||||
(function() {
|
||||
const GCC = new pmake.POSIXCompiler();
|
||||
|
||||
GCC.target = "GCC";
|
||||
GCC.description = "GCC/Clang";
|
||||
|
||||
pmake.register(GCC);
|
||||
})();
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
})();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue