diff options
-rw-r--r-- | helpcontent2/helpers/createmakefile.pl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/helpcontent2/helpers/createmakefile.pl b/helpcontent2/helpers/createmakefile.pl index 16a9e62543..909384b4fd 100644 --- a/helpcontent2/helpers/createmakefile.pl +++ b/helpcontent2/helpers/createmakefile.pl @@ -200,17 +200,23 @@ LAD $module = "schart"; $linkaddedfiles = <<"LAF"; + -add $module.cfg \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ -add $module.tree \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\ -add $module.jar \$(BIN)\$/xhp_${module}_LANGUAGE.zip LAF $linkaddeddeps = <<"LAD"; + \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\ \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\ \$(BIN)\$/xhp_${module}_LANGUAGE.zip LAD $linklinkfiles = ''; + for (@shared) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } + for (@schart) { $linklinkfiles = $linklinkfiles . " $_ \\\n"; } + + $auth = "script"; $date = sprintf "%4d/%02d/%02d %02d:%02d:%02d",$year+1900,$mon,$mday,$hour,$min,$sec; $prj = '..$/..' ; |