String sMakeFile = sUnoapi + sep + "makefile.mk";
File fMakeFile = new File(sMakeFile);
assure("ERROR: could not find makefile: '" + sMakeFile + "'", fMakeFile.exists(), mContinue);
String[] cmdLines = getCmdLines(sUnoapi);
ProcessHandler procHdl = runShellCommand(cmdLines, fUnoapi, false);
if (mDebug) {
log.println("---> Output of dmake:");
log.println(procHdl.getOutputText());
log.println("<--- Output of dmake file:");
log.println("---> Error output of dmake file");
log.println(procHdl.getErrorText());
log.println("<--- Error output of dmake file");
}
assure("module failed", verifyOutput(procHdl.getOutputText()), mContinue);
log.println("kill existing office...");
try {
officeProvider.closeExistingOffice(param, true);
} catch (java.lang.UnsatisfiedLinkError exception) {