Files
milsko/Koakumafile
NishiOwO ac0e0981ff i wonder if this works
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@424 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-10-19 17:11:16 +00:00

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"
}
}
}