Rev 230 | Rev 232 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
# $Id: Koakumafile 231 2024-10-03 04:30:37Z nishi $
# vim: syntax=tcl
proc run {project_name} {
exec sed "s/undef NO_SSL/define NO_SSL/g" config.h.tmpl > config.h
set ::env(DISPLAY) ":0"
RunCommand "make clean"
if { "$project_name" == "Tewi-BCC" } {
set ::env(LANG) "ja_JP.UTF-8"
set ::env(BORLAND) "C:/borland/bcc55"
RunCommand "make PLATFORM=bcc"
set ::env(LANG) "en_US.UTF-8"
} elseif { "$project_name" == "Tewi-VC6" } {
RunCommand "make PLATFORM=vc6"
} elseif { "$project_name" == "Tewi-Watcom" } {
set ::env(WATCOM) "/usr/watcom"
set ::env(INCLUDE) "/usr/watcom/h"
set ::env(PATH) "$::env(PATH):/usr/watcom/binl64"
RunCommand "make PLATFORM=watcom"
} else {
RunCommand "make"
}
file mkdir workdir
file mkdir workdir/etc
file mkdir workdir/www
file mkdir workdir/modules
file delete archive.7z
exec ./Tool/itworks > workdir/www/index.html
exec ./Tool/genconf C:/Tewi modules dll > workdir/etc/tewi.conf
RunCommand "cp Binary/pbtewi.gif workdir/www/"
foreach filen [glob Module/*.dll] {
RunCommand "cp $filen workdir/modules/"
}
cd workdir
RunCommand "7z a ../archive.7z *"
cd ..
exec cat /usr/share/7z.sfx archive.7z > tewidist.exe
RunCommand "rm -rf workdir"
}