Changeset 223 in Main for trunk


Ignore:
Timestamp:
Oct 3, 2024, 12:22:19 PM (6 weeks ago)
Author:
Nishi
Message:

update koakumafile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Koakumafile

    r211 r223  
    33
    44proc run {project_name} {
    5         RunCommand "cp config.h.tmpl config.h"
     5        RunCommand "sed 's/undef NO_SSL/define NO_SSL/g' config.h.tmpl > config.h"
    66        RunCommand "make clean"
    7         RunCommand "make"
     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                RunCommand "make PLATFORM=watcom"
     16        } else {
     17                RunCommand "make"
     18        }
    819}
Note: See TracChangeset for help on using the changeset viewer.