source: Main/trunk/Koakumafile@ 230

Last change on this file since 230 was 230, checked in by Nishi, on Oct 3, 2024 at 1:29:44 PM

update koakumafile

  • Property svn:keywords set to Id
File size: 1.1 KB
RevLine 
[210]1# $Id: Koakumafile 230 2024-10-03 04:29:44Z nishi $
2# vim: syntax=tcl
3
4proc run {project_name} {
[225]5 exec sed "s/undef NO_SSL/define NO_SSL/g" config.h.tmpl > config.h
[227]6 set ::env(DISPLAY) ":0"
[211]7 RunCommand "make clean"
[223]8 if { "$project_name" == "Tewi-BCC" } {
[228]9 set ::env(LANG) "ja_JP.UTF-8"
[223]10 set ::env(BORLAND) "C:/borland/bcc55"
11 RunCommand "make PLATFORM=bcc"
[228]12 set ::env(LANG) "en_US.UTF-8"
[223]13 } elseif { "$project_name" == "Tewi-VC6" } {
14 RunCommand "make PLATFORM=vc6"
15 } elseif { "$project_name" == "Tewi-Watcom" } {
16 set ::env(WATCOM) "/usr/watcom"
17 set ::env(INCLUDE) "/usr/watcom/h"
[225]18 set ::env(PATH) "$::env(PATH):/usr/watcom/binl64"
[223]19 RunCommand "make PLATFORM=watcom"
20 } else {
21 RunCommand "make"
22 }
[229]23 file mkdir workdir
24 file mkdir workdir/etc
25 file mkdir workdir/www
26 file mkdir workdir/modules
27 file delete archive.7z
28
29 exec ./Tool/itworks > workdir/www/index.html
30 exec ./Tool/genconf C:/Tewi modules dll > workdir/etc/tewi.conf
31 RunCommand "cp Binary/pbtewi.gif workdir/www/"
[230]32 RunCommand "cp Module/*.dll workdir/modules/"
[229]33 cd workdir
34 RunCommand "7z a ../archive.7z *"
35 cd ..
36 exec cat /usr/share/7z.sfx archive.7z > tewidist.exe
37 RunCommand "rm -rf workdir"
[210]38}
Note: See TracBrowser for help on using the repository browser.