Differences From Artifact [1a40192358]:
- Executable file kitcreator — part of check-in [fcf0977f4c] at 2010-09-26 04:37:04 on branch trunk — Added kitcreator (user: rkeene, size: 753) [annotate] [blame] [check-ins using]
To Artifact [5b2def5433]:
- Executable file
kitcreator
— part of check-in
[74dad5670f]
at
2010-09-26 04:37:16
on branch trunk
— Updated to use existing Tclkit if found for final step
Updated to build all pieces needed for a tclkit (user: rkeene, size: 767) [annotate] [blame] [check-ins using]
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
if [ "$1" = "clean" ]; then mode="clean" fi if [ "$1" = "distclean" ]; then mode="distclean" fi for pkg in tcl tk itcl mk4tcl tclvfs; do if [ "${mode}" = "distclean" ]; then rm -rf "${pkg}/src" fi if [ "${mode}" = "clean" -o "${mode}" = "distclean" ]; then rm -f "${pkg}/build.log" rm -rf "${pkg}/out" "${pkg}/inst" "${pkg}/build" |
| |
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
if [ "$1" = "clean" ]; then
mode="clean"
fi
if [ "$1" = "distclean" ]; then
mode="distclean"
fi
for pkg in tcl tk itcl mk4tcl tclvfs memchan kitsh; do
if [ "${mode}" = "distclean" ]; then
rm -rf "${pkg}/src"
fi
if [ "${mode}" = "clean" -o "${mode}" = "distclean" ]; then
rm -f "${pkg}/build.log"
rm -rf "${pkg}/out" "${pkg}/inst" "${pkg}/build"
|