stuff
This commit is contained in:
parent
fac750a2b3
commit
7278e994da
14 changed files with 128 additions and 40 deletions
|
|
@ -1,7 +1,5 @@
|
|||
const PADDING = 24;
|
||||
|
||||
pmake.compiler = pmake.compilers["GCC"];
|
||||
|
||||
for(var i = 1; i < ARGV.length; i++) {
|
||||
if(ARGV[i] == "--help") {
|
||||
var keys;
|
||||
|
|
@ -79,6 +77,8 @@ for(var i = 1; i < ARGV.length; i++) {
|
|||
}
|
||||
}
|
||||
|
||||
main();
|
||||
|
||||
(function() {
|
||||
function make(output) {
|
||||
const targets = pmake.resolveProjects(pmake.projects);
|
||||
|
|
@ -134,8 +134,10 @@ function make(output) {
|
|||
mk.write("\n");
|
||||
|
||||
mk.write(pmake.compiler.output(self) + ": " + objs.join(" ") + "\n");
|
||||
mk.write(" @echo LINK " + pmake.compiler.output(self) + "\n");
|
||||
mk.write(" $(SILENT)" + pmake.compiler.link(self, objs) + "\n");
|
||||
if(!(self instanceof pmake.InterfaceProject)) {
|
||||
mk.write(" @echo LINK " + pmake.compiler.output(self) + "\n");
|
||||
mk.write(" $(SILENT)" + pmake.compiler.link(self, objs) + "\n");
|
||||
}
|
||||
mk.write("\n");
|
||||
|
||||
for(var i = 0; i < objs.length; i++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue