Rev | Line | |
---|
[210] | 1 | # $Id: Koakumafile 224 2024-10-03 03:22:55Z nishi $
|
---|
| 2 | # vim: syntax=tcl
|
---|
| 3 |
|
---|
| 4 | proc run {project_name} {
|
---|
[224] | 5 | RunCommand "sed \"s/undef NO_SSL/define NO_SSL/g\" config.h.tmpl > config.h"
|
---|
[211] | 6 | RunCommand "make clean"
|
---|
[223] | 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 | }
|
---|
[210] | 19 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.