Overview
Comment: | Updated to clean before building, for sanity during development (releases shouldn't need this) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | a9dca07df33cef0cd54d5cb5d959b76a575b3260 |
User & Date: | rkeene on 2010-09-26 04:38:13 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:38 | Added minimal README check-in: d8050c2a9f user: rkeene tags: trunk | |
04:38 | Updated to clean before building, for sanity during development (releases shouldn't need this) check-in: a9dca07df3 user: rkeene tags: trunk | |
04:38 |
Updated to find libraries to link to dynamically
Updated to add "unix" directory to header search path check-in: cacf7999db user: rkeene tags: trunk | |
Changes
Modified kitsh/build.sh from [20e80b20ba] to [913931f5ab].
22 22 mkdir 'out' 'inst' || exit 1 23 23 24 24 25 25 ( 26 26 cp -r 'buildsrc' 'build' 27 27 cd "${BUILDDIR}" || exit 1 28 28 29 - # Compile all objects... 29 + # Cleanup, just incase the incoming directory was not pre-cleaned 30 + ${MAKE:-make} distclean >/dev/null 2>/dev/null 31 + 32 + # Compile Kitsh 30 33 ./configure --with-tcl="${TCLCONFIGDIR}" 31 34 ${MAKE:-make} || exit 1 32 35 36 + # Strip the kit of all symbols, if possible 33 37 strip kit >/dev/null 2>/dev/null 34 38 35 39 # Create VFS directory 36 40 mkdir "starpack.vfs" 37 41 mkdir "starpack.vfs/lib" 38 42 39 43 ## Copy in all built directories