Subversion Repositories Tewi

Rev

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

Rev 210 Rev 211
Line 1... Line 1...
1
# $Id: Koakumafile 210 2024-10-02 07:04:18Z nishi $
1
# $Id: Koakumafile 211 2024-10-02 09:39:36Z nishi $
2
# vim: syntax=tcl
2
# vim: syntax=tcl
3
 
3
 
4
proc run {project_name} {
4
proc run {project_name} {
5
	exec cp config.h.tmpl config.h >@stdout 2>@1
5
	RunCommand "cp config.h.tmpl config.h"
6
	exec make clean >@stdout 2>@1
6
	RunCommand "make clean"
7
	exec make >@stdout 2>@1
7
	RunCommand "make"
8
}
8
}