source: Main/trunk/Koakumafile@ 225

Last change on this file since 225 was 225, checked in by Nishi, on Oct 3, 2024 at 12:23:53 PM

update koakumafile

  • Property svn:keywords set to Id
File size: 580 bytes
Line 
1# $Id: Koakumafile 225 2024-10-03 03:23:53Z 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 RunCommand "make clean"
7 if { "$project_name" == "Tewi-BCC" } {
8 set ::env(BORLAND) "C:/borland/bcc55"
9 RunCommand "make PLATFORM=bcc"
10 } elseif { "$project_name" == "Tewi-VC6" } {
11 RunCommand "make PLATFORM=vc6"
12 } elseif { "$project_name" == "Tewi-Watcom" } {
13 set ::env(WATCOM) "/usr/watcom"
14 set ::env(INCLUDE) "/usr/watcom/h"
15 set ::env(PATH) "$::env(PATH):/usr/watcom/binl64"
16 RunCommand "make PLATFORM=watcom"
17 } else {
18 RunCommand "make"
19 }
20}
Note: See TracBrowser for help on using the repository browser.