source: Main/trunk/Koakumafile@ 227

Last change on this file since 227 was 227, checked in by Nishi, on Oct 3, 2024 at 12:25:51 PM

update koakumafile

  • Property svn:keywords set to Id
File size: 605 bytes
Line 
1# $Id: Koakumafile 227 2024-10-03 03:25:51Z nishi $
2# vim: syntax=tcl
3
4proc run {project_name} {
5 exec sed "s/undef NO_SSL/define NO_SSL/g" config.h.tmpl > config.h
6 set ::env(DISPLAY) ":0"
7 RunCommand "make clean"
8 if { "$project_name" == "Tewi-BCC" } {
9 set ::env(BORLAND) "C:/borland/bcc55"
10 RunCommand "make PLATFORM=bcc"
11 } elseif { "$project_name" == "Tewi-VC6" } {
12 RunCommand "make PLATFORM=vc6"
13 } elseif { "$project_name" == "Tewi-Watcom" } {
14 set ::env(WATCOM) "/usr/watcom"
15 set ::env(INCLUDE) "/usr/watcom/h"
16 set ::env(PATH) "$::env(PATH):/usr/watcom/binl64"
17 RunCommand "make PLATFORM=watcom"
18 } else {
19 RunCommand "make"
20 }
21}
Note: See TracBrowser for help on using the repository browser.