Changeset 128
- Timestamp:
- 11/26/05 00:10:11 (3 years ago)
- Files:
-
- trunk/DerelictAL/README (modified) (1 diff)
- trunk/DerelictAL/build-linux.sh (modified) (1 diff)
- trunk/DerelictGL/README (modified) (1 diff)
- trunk/DerelictGL/build-linux.sh (modified) (1 diff)
- trunk/DerelictGLFW/README (modified) (1 diff)
- trunk/DerelictGLFW/build-linux.sh (modified) (1 diff)
- trunk/DerelictGLU/README (modified) (1 diff)
- trunk/DerelictGLU/build-linux.sh (modified) (1 diff)
- trunk/DerelictIL/README (modified) (1 diff)
- trunk/DerelictIL/build-linux.sh (modified) (1 diff)
- trunk/DerelictILU/README (modified) (1 diff)
- trunk/DerelictILU/build-linux.sh (modified) (1 diff)
- trunk/DerelictILUT/README (modified) (1 diff)
- trunk/DerelictILUT/build-linux.sh (modified) (1 diff)
- trunk/DerelictSDL/README (modified) (1 diff)
- trunk/DerelictSDL/build-linux.sh (modified) (1 diff)
- trunk/DerelictSDLImage/README (modified) (1 diff)
- trunk/DerelictSDLImage/build-linux.sh (modified) (1 diff)
- trunk/DerelictSDLMixer/README (modified) (1 diff)
- trunk/DerelictSDLMixer/build-linux.sh (modified) (1 diff)
- trunk/DerelictSDLNet/README (modified) (1 diff)
- trunk/DerelictSDLNet/build-linux.sh (modified) (1 diff)
- trunk/DerelictSDLttf/README (modified) (1 diff)
- trunk/DerelictSDLttf/build-linux.sh (modified) (1 diff)
- trunk/DerelictUtil/build-linux.sh (modified) (1 diff)
- trunk/build-linux.sh (modified) (2 diffs)
- trunk/docs/al.html (modified) (1 diff)
- trunk/docs/build.html (modified) (4 diffs)
- trunk/docs/gl.html (modified) (1 diff)
- trunk/docs/glfw.html (modified) (1 diff)
- trunk/docs/glu.html (modified) (1 diff)
- trunk/docs/il.html (modified) (1 diff)
- trunk/docs/ilu.html (modified) (1 diff)
- trunk/docs/ilut.html (modified) (1 diff)
- trunk/docs/sdl.html (modified) (1 diff)
- trunk/docs/sdlimg.html (modified) (1 diff)
- trunk/docs/sdlmix.html (modified) (1 diff)
- trunk/docs/sdlnet.html (modified) (1 diff)
- trunk/docs/sdlttf.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/DerelictAL/README
r126 r128 25 25 configuring Derelict's Build scripts. 26 26 2) from a command prompt, cd to <derelict_dir>/DerelictAL 27 3) type ./build-linux27 3) type sh build-linux.sh 28 28 4) when the build completes, libderelictAL.a will be located in <derelict_dir>\lib. trunk/DerelictAL/build-linux.sh
r126 r128 3 3 CLEANUP=0 4 4 5 if [ - x"build-config.sh" ]; then6 ` ./build-config.sh $@`5 if [ -f "build-config.sh" ]; then 6 `sh build-config.sh $@` 7 7 else 8 8 CLEANUP=1 9 9 cd .. 10 if [ - x"build-config.sh" ]; then11 ` ./build-config.sh $@`10 if [ -f "build-config.sh" ]; then 11 `sh build-config.sh $@` 12 12 else 13 13 echo "build-config.sh not found!" trunk/DerelictGL/README
r126 r128 25 25 configuring Derelict's Build scripts. 26 26 2) from a command prompt, cd to <derelict_dir>/DerelictGL 27 3) type ./build-linux27 3) type sh build-linux.sh 28 28 4) when the build completes, libderelictGL.a will be located in <derelict_dir>\lib. trunk/DerelictGL/build-linux.sh
r126 r128 3 3 CLEANUP=0 4 4 5 if [ - x"build-config.sh" ]; then6 ` ./build-config.sh $@`5 if [ -f "build-config.sh" ]; then 6 `sh build-config.sh $@` 7 7 else 8 8 CLEANUP=1 9 9 cd .. 10 if [ - x"build-config.sh" ]; then11 ` ./build-config.sh $@`10 if [ -f "build-config.sh" ]; then 11 `sh build-config.sh $@` 12 12 else 13 13 echo "build-config.sh not found!" trunk/DerelictGLFW/README
r126 r128 23 23 configuring Derelict's Build scripts. 24 24 2) from a command prompt, cd to <derelict_dir>/DerelictGLFW 25 3) type ./build-linux25 3) type sh build-linux.sh 26 26 4) when the build completes, libderelictGLFW.a will be located in <derelict_dir>\lib. 27 27 trunk/DerelictGLFW/build-linux.sh
r126 r128 3 3 CLEANUP=0 4 4 5 if [ - x"build-config.sh" ]; then6 ` ./build-config.sh $@`5 if [ -f "build-config.sh" ]; then 6 `sh build-config.sh $@` 7 7 else 8 8 CLEANUP=1 9 9 cd .. 10 if [ - x"build-config.sh" ]; then11 ` ./build-config.sh $@`10 if [ -f "build-config.sh" ]; then 11 `sh build-config.sh $@` 12 12 else 13 13 echo "build-config.sh not found!" trunk/DerelictGLU/README
r126 r128 25 25 configuring Derelict's Build scripts. 26 26 2) from a command prompt, cd to <derelict_dir>/DerelictGLU 27 3) type ./build-linux27 3) type sh build-linux.sh 28 28 4) when the build completes, libderelictGLU.a will be located in <derelict_dir>\lib. trunk/DerelictGLU/build-linux.sh
r126 r128 3 3 CLEANUP=0 4 4 5 if [ - x"build-config.sh" ]; then6 ` ./build-config.sh $@`5 if [ -f "build-config.sh" ]; then 6 `sh build-config.sh $@` 7 7 else 8 8 CLEANUP=1 9 9 cd .. 10 if [ - x"build-config.sh" ]; then11 ` ./build-config.sh $@`10 if [ -f "build-config.sh" ]; then 11 `sh build-config.sh $@` 12 12 else 13 13 echo "build-config.sh not found!" trunk/DerelictIL/README
r127 r128 25 25 configuring Derelict's Build scripts. 26 26 2) from a command prompt, cd to <derelict_dir>/DerelictIL 27 3) type ./build-linux27 3) type sh build-linux.sh 28 28 4) when the build completes, libderelictIL.a will be located in <derelict_dir>\lib. trunk/DerelictIL/build-linux.sh
r126 r128 3 3 CLEANUP=0 4 4 5 if [ - x"build-config.sh" ]; then6 ` ./build-config.sh $@`5 if [ -f "build-config.sh" ]; then 6 `sh build-config.sh $@` 7 7 else 8 8 CLEANUP=1 9 9 cd .. 10 if [ - x"build-config.sh" ]; then11 ` ./build-config.sh $@`10 if [ -f "build-config.sh" ]; then 11 `sh build-config.sh $@` 12 12 else 13 13 echo "build-config.sh not found!" trunk/DerelictILU/README
r127 r128 25 25 configuring Derelict's Build scripts. 26 26 2) from a command prompt, cd to <derelict_dir>/DerelictILU 27 3) type ./build-linux27 3) type sh build-linux.sh 28 28 4) when the build completes, libderelictILU.a will be located in <derelict_dir>\lib. trunk/DerelictILU/build-linux.sh
r126 r128 3 3 CLEANUP=0 4 4 5 if [ - x"build-config.sh" ]; then6 ` ./build-config.sh $@`5 if [ -f "build-config.sh" ]; then 6 `sh build-config.sh $@` 7 7 else 8 8 CLEANUP=1 9 9 cd .. 10 if [ - x"build-config.sh" ]; then11 ` ./build-config.sh $@`10 if [ -f "build-config.sh" ]; then 11 `sh build-config.sh $@` 12 12 else 13 13 echo "build-config.sh not found!" trunk/DerelictILUT/README
r127 r128 25 25 configuring Derelict's Build scripts. 26 26 2) from a command prompt, cd to <derelict_dir>/DerelictILUT 27 3) type ./build-linux27 3) type sh build-linux.sh 28 28 4) when the build completes, libderelictILUT.a will be located in <derelict_dir>\lib. trunk/DerelictILUT/build-linux.sh
r126 r128 3 3 CLEANUP=0 4 4 5 if [ - x"build-config.sh" ]; then6 ` ./build-config.sh $@`5 if [ -f "build-config.sh" ]; then 6 `sh build-config.sh $@` 7 7 else 8 8 CLEANUP=1 9 9 cd .. 10 if [ - x"build-config.sh" ]; then11 ` ./build-config.sh $@`10 if [ -f "build-config.sh" ]; then 11 `sh build-config.sh $@` 12 12 else 13 13 echo "build-config.sh not found!" trunk/DerelictSDL/README
r126 r128 25 25 configuring Derelict's Build scripts. 26 26 2) from a command prompt, cd to <derelict_dir>/DerelictSDL 27 3) type ./build-linux27 3) type sh build-linux.sh 28 28 4) when the build completes, libderelictSDL.a will be located in <derelict_dir>\lib. trunk/DerelictSDL/build-linux.sh
r126 r128 3 3 CLEANUP=0 4 4 5 if [ - x"build-config.sh" ]; then6 ` ./build-config.sh $@`5 if [ -f "build-config.sh" ]; then 6 `sh build-config.sh $@` 7 7 else 8 8 CLEANUP=1 9 9 cd .. 10 if [ - x"build-config.sh" ]; then11 ` ./build-config.sh $@`10 if [ -f "build-config.sh" ]; then 11 `sh build-config.sh $@` 12 12 else 13 13 echo "build-config.sh not found!" trunk/DerelictSDLImage/README
r126 r128 25 25 configuring Derelict's Build scripts. 26 26 2) from a command prompt, cd to <derelict_dir>/DerelictSDLImage 27 3) type ./build-linux27 3) type sh build-linux.sh 28 28 4) when the build completes, libderelictSDLImage.a will be located in <derelict_dir>\lib. trunk/DerelictSDLImage/build-linux.sh
r126 r128 3 3 CLEANUP=0 4 4 5 if [ - x"build-config.sh" ]; then6 ` ./build-config.sh $@`5 if [ -f "build-config.sh" ]; then 6 `sh build-config.sh $@` 7 7 else 8 8 CLEANUP=1 9 9 cd .. 10 if [ - x"build-config.sh" ]; then11 ` ./build-config.sh $@`10 if [ -f "build-config.sh" ]; then 11 `sh build-config.sh $@` 12 12 else 13 13 echo "build-config.sh not found!" trunk/DerelictSDLMixer/README
r126 r128 28 28 configuring Derelict's Build scripts. 29 29 2) from a command prompt, cd to <derelict_dir>/DerelictSDLMixer 30 3) type ./build-linux30 3) type sh build-linux.sh 31 31 4) when the build completes, libderelictSDLMixer.a will be located in <derelict_dir>\lib. trunk/DerelictSDLMixer/build-linux.sh
r126 r128 3 3 CLEANUP=0 4 4 5 if [ - x"build-config.sh" ]; then6 ` ./build-config.sh $@`5 if [ -f "build-config.sh" ]; then 6 `sh build-config.sh $@` 7 7 else 8 8 CLEANUP=1 9 9 cd .. 10 if [ - x"build-config.sh" ]; then11 ` ./build-config.sh $@`10 if [ -f "build-config.sh" ]; then 11 `sh build-config.sh $@` 12 12 else 13 13 echo "build-config.sh not found!" trunk/DerelictSDLNet/README
r126 r128 28 28 configuring Derelict's Build scripts. 29 29 2) from a command prompt, cd to <derelict_dir>/DerelictSDLNet 30 3) type ./build-linux30 3) type sh build-linux.sh 31 31 4) when the build completes, libderelictSDLNet.a will be located in <derelict_dir>\lib. trunk/DerelictSDLNet/build-linux.sh
r126 r128 3 3 CLEANUP=0 4 4 5 if [ - x"build-config.sh" ]; then6 ` ./build-config.sh $@`5 if [ -f "build-config.sh" ]; then 6 `sh build-config.sh $@` 7 7 else 8 8 CLEANUP=1 9 9 cd .. 10 if [ - x"build-config.sh" ]; then11 ` ./build-config.sh $@`10 if [ -f "build-config.sh" ]; then 11 `sh build-config.sh $@` 12 12 else 13 13 echo "build-config.sh not found!" trunk/DerelictSDLttf/README
r126 r128 24 24 configuring Derelict's Build scripts. 25 25 2) from a command prompt, cd to <derelict_dir>/DerelictSDLttf 26 3) type ./build-linux26 3) type sh build-linux.sh 27 27 4) when the build completes, libderelictSDLttf.a will be located in <derelict_dir>\lib. trunk/DerelictSDLttf/build-linux.sh
r126 r128 3 3 CLEANUP=0 4 4 5 if [ - x"build-config.sh" ]; then6 ` ./build-config.sh $@`5 if [ -f "build-config.sh" ]; then 6 `sh build-config.sh $@` 7 7 else 8 8 CLEANUP=1 9 9 cd .. 10 if [ - x"build-config.sh" ]; then11 ` ./build-config.sh $@`10 if [ -f "build-config.sh" ]; then 11 `sh build-config.sh $@` 12 12 else 13 13 echo "build-config.sh not found!" trunk/DerelictUtil/build-linux.sh
r126 r128 3 3 CLEANUP=0 4 4 5 if [ - x"build-config.sh" ]; then6 ` ./build-config.sh $@`5 if [ -f "build-config.sh" ]; then 6 `sh build-config.sh $@` 7 7 else 8 8 CLEANUP=1 9 9 cd .. 10 if [ - x"build-config.sh" ]; then11 ` ./build-config.sh $@`10 if [ -f "build-config.sh" ]; then 11 `sh build-config.sh $@` 12 12 else 13 13 echo "build-config.sh not found!" trunk/build-linux.sh
r126 r128 1 1 #!/bin/sh 2 2 3 ./build-config.sh $@3 sh build-config.sh $@ 4 4 5 5 # derelict libs … … 21 21 # build libs 22 22 for Library in $DERELICT_LIBRARIES; do 23 if [ - x"$Library/build-linux.sh" ]; then23 if [ -f "$Library/build-linux.sh" ]; then 24 24 echo "Building $Library ..." 25 $Library/build-linux.sh $@25 sh $Library/build-linux.sh $@ 26 26 fi 27 27 done trunk/docs/al.html
r126 r128 94 94 configuring Derelict's Build scripts.</li> 95 95 <li>from a command prompt, cd to <derelict_dir>/DerelictAL</li> 96 <li>type ./build-linux</li>96 <li>type sh build-linux.sh</li> 97 97 <li>when the build completes, libderelictAL.a will be located in <derelict_dir>/lib.</li> 98 98 </ol></p> trunk/docs/build.html
r126 r128 52 52 <ol> 53 53 <li>CD to the top-level Derelict directory.</li> 54 <li>type <tt>buildme</tt> on windows, or <tt> ./build-linux</tt> on Linux.</li>54 <li>type <tt>buildme</tt> on windows, or <tt>sh build-linux.sh</tt> on Linux.</li> 55 55 </ol> 56 56 </p><p> … … 61 61 you can execute the <tt>cleanlib</tt> script in the top-level Derelict directory. 62 62 On Linux, you can execute the build-linux script in the top-level directory with 63 the '-cleanlib' command line parameter (<tt> ./build-linux-cleanlib</tt>.63 the '-cleanlib' command line parameter (<tt>sh build-linux.sh -cleanlib</tt>. 64 64 </p> 65 65 <p> … … 67 67 (-debug -g with DMD). Passing 'release' as an argument to the <tt>buildme</tt> 68 68 command, or '-release' to the <tt>build-linux</tt> command (<tt>buildme release</tt> 69 or <tt> ./build-linux-release</tt> will cause the Derelict libraries to be built69 or <tt>sh build-linux.sh -release</tt> will cause the Derelict libraries to be built 70 70 in release mode (-release -O with DMD). 71 71 … … 76 76 <p><ol> 77 77 <li>CD to the package's directory ([derelict_dir]/[package_name]).</li> 78 <li>type <tt>buildme</tt> on windows, or <tt> ./build-linux</tt> on Linux.</li>78 <li>type <tt>buildme</tt> on windows, or <tt>sh build-linux.sh</tt> on Linux.</li> 79 79 </ol> 80 80 </p><p> trunk/docs/gl.html
r126 r128 83 83 configuring Derelict's Build scripts.</li> 84 84 <li>from a command prompt, cd to <derelict_dir>/DerelictGL</li> 85 <li>type ./build-linux</li>85 <li>type sh build-linux.sh</li> 86 86 <li>when the build completes, libderelictGL.a will be located in <derelict_dir>/lib.</li> 87 87 </ol></p> trunk/docs/glfw.html
r126 r128 90 90 configuring Derelict's Build scripts.</li> 91 91 <li>from a command prompt, cd to <derelict_dir>/DerelictGLFW</li> 92 <li>type ./build-linux</li>92 <li>type sh build-linux.sh</li> 93 93 <li>when the build completes, libderelictGLFW.a will be located in <derelict_dir>/lib.</li> 94 94 </ol></p> trunk/docs/glu.html
r126 r128 102 102 configuring Derelict's Build scripts.</li> 103 103 <li>from a command prompt, cd to <derelict_dir>/DerelictGLU</li> 104 <li>type ./build-linux</li>104 <li>type sh build-linux.sh</li> 105 105 <li>when the build completes, libderelictGLU.a will be located in <derelict_dir>/lib.</li> 106 106 </ol></p> trunk/docs/il.html
r126 r128 80 80 configuring Derelict's Build scripts.</li> 81 81 <li>from a command prompt, cd to <derelict_dir>/DerelictIL</li> 82 <li>type ./build-linux</li>82 <li>type sh build-linux.sh</li> 83 83 <li>when the build completes, libderelictIL.a will be located in <derelict_dir>/lib.</li> 84 84 </ol></p> trunk/docs/ilu.html
r126 r128 80 80 configuring Derelict's Build scripts.</li> 81 81 <li>from a command prompt, cd to <derelict_dir>/DerelictILU</li> 82 <li>type ./build-linux</li>82 <li>type sh build-linux.sh</li> 83 83 <li>when the build completes, libderelictILU.a will be located in <derelict_dir>/lib.</li> 84 84 </ol></p> trunk/docs/ilut.html
r126 r128 80 80 configuring Derelict's Build scripts.</li> 81 81 <li>from a command prompt, cd to <derelict_dir>/DerelictILUT</li> 82 <li>type ./build-linux</li>82 <li>type sh build-linux.sh</li> 83 83 <li>when the build completes, libderelictILUT.a will be located in <derelict_dir>/lib.</li> 84 84 </ol></p> trunk/docs/sdl.html
r126 r128 93 93 configuring Derelict's Build scripts.</li> 94 94 <li>from a command prompt, cd to <derelict_dir>/DerelictSDL</li> 95 <li>type ./build-linux</li>95 <li>type sh build-linux.sh</li> 96 96 <li>when the build completes, libderelictSDL.a will be located in <derelict_dir>/lib.</li> 97 97 </ol></p> trunk/docs/sdlimg.html
r126 r128 81 81 configuring Derelict's Build scripts.</li> 82 82 <li>from a command prompt, cd to <derelict_dir>/DerelictSDLImage</li> 83 <li>type ./build-linux</li>83 <li>type sh build-linux.sh</li> 84 84 <li>when the build completes, libderelictSDLImage.a will be located in <derelict_dir>/lib.</li> 85 85 </ol></p> trunk/docs/sdlmix.html
r126 r128 85 85 configuring Derelict's Build scripts.</li> 86 86 <li>from a command prompt, cd to <derelict_dir>/DerelictSDLMixer</li> 87 <li>type ./build-linux</li>87 <li>type sh build-linux.sh</li> 88 88 <li>when the build completes, libderelictSDLMixer.a will be located in <derelict_dir>/lib.</li> 89 89 </ol></p> trunk/docs/sdlnet.html
r126 r128 81 81 configuring Derelict's Build scripts.</li> 82 82 <li>from a command prompt, cd to <derelict_dir>/DerelictSDLNet</li> 83 <li>type ./build-linux</li>83 <li>type sh build-linux.sh</li> 84 84 <li>when the build completes, libderelictSDLNet.a will be located in <derelict_dir>/lib.</li> 85 85 </ol></p> trunk/docs/sdlttf.html
r126 r128 84 84 configuring Derelict's Build scripts.</li> 85 85 <li>from a command prompt, cd to <derelict_dir>/DerelictSDLttf</li> 86 <li>type ./build-linux</li>86 <li>type sh build-linux.sh</li> 87 87 <li>when the build completes, libderelictSDLttf.a will be located in <derelict_dir>/lib.</li> 88 88 </ol></p>
