Check-in [a9dca07df3]
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
23
24
25
26
27
28



29
30
31
32

33
34
35
36
37
38
39
mkdir 'out' 'inst' || exit 1


(
	cp -r 'buildsrc' 'build'
	cd "${BUILDDIR}" || exit 1




	# Compile all objects...
	./configure --with-tcl="${TCLCONFIGDIR}"
	${MAKE:-make} || exit 1


	strip kit >/dev/null 2>/dev/null

	# Create VFS directory
	mkdir "starpack.vfs"
	mkdir "starpack.vfs/lib"

	## Copy in all built directories







>
>
>
|



>







22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
mkdir 'out' 'inst' || exit 1


(
	cp -r 'buildsrc' 'build'
	cd "${BUILDDIR}" || exit 1

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

	## Copy in all built directories