Improve the layout of the makefile auto generated.

This commit is contained in:
Roy Qu 2022-12-21 09:17:27 +08:00
parent e232ce77c9
commit 4cb432da74
1 changed files with 0 additions and 2 deletions

View File

@ -70,7 +70,6 @@ void ProjectCompiler::createStaticMakeFile()
if (!mOnlyCheckSyntax) {
writeln(file,"\tar r $(BIN) $(LINKOBJ)");
writeln(file,"\tranlib $(BIN)");
writeln(file);
}
writeMakeObjFilesRules(file);
}
@ -86,7 +85,6 @@ void ProjectCompiler::createDynamicMakeFile()
} else {
writeln(file, "\t$(CC) -mdll $(LINKOBJ) -o $(BIN) $(LIBS) -Wl,--output-def,$(DEF),--out-implib,$(STATIC)");
}
writeln(file);
}
writeMakeObjFilesRules(file);
}