Subversion Repositories Tewi

Rev

Rev 286 | Rev 288 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 286 Rev 287
Line 1... Line 1...
1
# $Id: Koakumafile 286 2024-10-09 02:56:39Z nishi $
1
# $Id: Koakumafile 287 2024-10-09 02:58:07Z nishi $
2
# vim: syntax=tcl
2
# vim: syntax=tcl
3
 
3
 
4
proc run {project_name} {
4
proc run {project_name} {
5
	set once 1
5
	set once 1
6
	while 1 {
6
	while 1 {
Line 44... Line 44...
44
			RunCommand "doas mkdir -p /raid/ftp/pub/tewi/ps3"
44
			RunCommand "doas mkdir -p /raid/ftp/pub/tewi/ps3"
45
			RunCommand "doas cp Server/tewi.pkg /raid/f/g/tewi/ps3/tewidistps3-[exec make get-version]-nossl.pkg"
45
			RunCommand "doas cp Server/tewi.pkg /raid/f/g/tewi/ps3/tewidistps3-[exec make get-version]-nossl.pkg"
46
			RunCommand "doas cp Server/tewi.pkg /raid/ftp/pub/tewi/ps3/tewidistps3-[exec make get-version]-nossl.pkg"
46
			RunCommand "doas cp Server/tewi.pkg /raid/ftp/pub/tewi/ps3/tewidistps3-[exec make get-version]-nossl.pkg"
47
			return
47
			return
48
		} elseif { "$project_name" == "Tewi-MinGW-32" || "$project_name" == "Tewi-MinGW-64" } {
48
		} elseif { "$project_name" == "Tewi-MinGW-32" || "$project_name" == "Tewi-MinGW-64" } {
-
 
49
			if { $once == 1 } {
49
			RunCommand "rm -rf openssl"
50
				RunCommand "rm -rf openssl"
50
			RunCommand "git clone https://github.com/clamwin/openssl"
51
				RunCommand "git clone https://github.com/clamwin/openssl"
-
 
52
			}
51
			set bits 32
53
			set bits 32
52
			if { "$project_name" == "Tewi-MinGW-32" } {
54
			if { "$project_name" == "Tewi-MinGW-32" } {
53
				foreach filen [glob openssl/lib/mingw/x86/*] {
55
				foreach filen [glob openssl/lib/mingw/x86/*] {
54
					RunCommand "cp $filen openssl/lib/"
56
					RunCommand "cp $filen openssl/lib/"
55
				}
57
				}