mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2025-12-31 14:40:49 +00:00
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@424 b9cfdab3-6d41-4d17-bbe4-086880011989
16 lines
335 B
Tcl
Executable File
16 lines
335 B
Tcl
Executable File
# $Id$
|
|
# vim: syntax=tcl
|
|
|
|
proc run {project_name} {
|
|
if { "$project_name" == "MilskoDoxygen" } {
|
|
RunCommand "doxygen"
|
|
RunCommand "rm -rf /var/www/milsko-doxygen"
|
|
RunCommand "mv doxygen/html /var/www/milsko-doxygen"
|
|
} else {
|
|
RunCommand "make clean"
|
|
if { "$project_name" == "MilskoLinux" } {
|
|
RunCommand "make -j4"
|
|
}
|
|
}
|
|
}
|