Index: kitsh/build.sh ================================================================== --- kitsh/build.sh +++ kitsh/build.sh @@ -24,14 +24,18 @@ ( cp -r 'buildsrc' 'build' cd "${BUILDDIR}" || exit 1 - # Compile all objects... + # Cleanup, just incase the incoming directory was not pre-cleaned + ${MAKE:-make} distclean >/dev/null 2>/dev/null + + # Compile Kitsh ./configure --with-tcl="${TCLCONFIGDIR}" ${MAKE:-make} || exit 1 + # Strip the kit of all symbols, if possible strip kit >/dev/null 2>/dev/null # Create VFS directory mkdir "starpack.vfs" mkdir "starpack.vfs/lib"