Changeset 126
- Timestamp:
- 11/09/05 00:56:15 (3 years ago)
- Files:
-
- trunk/DerelictAL/Makefile.linux (deleted)
- trunk/DerelictAL/README (modified) (1 diff)
- trunk/DerelictAL/build-linux.sh (added)
- trunk/DerelictGL/Makefile.linux (deleted)
- trunk/DerelictGL/README (modified) (1 diff)
- trunk/DerelictGL/build-linux.sh (added)
- trunk/DerelictGLFW/Makefile.linux (deleted)
- trunk/DerelictGLFW/README (modified) (2 diffs)
- trunk/DerelictGLFW/build-linux.sh (added)
- trunk/DerelictGLU/Makefile.linux (deleted)
- trunk/DerelictGLU/README (modified) (2 diffs)
- trunk/DerelictGLU/build-linux.sh (added)
- trunk/DerelictIL/Makefile.linux (deleted)
- trunk/DerelictIL/build-linux.sh (added)
- trunk/DerelictILU/build-linux.sh (added)
- trunk/DerelictILUT/Makefile.linux (deleted)
- trunk/DerelictILUT/build-linux.sh (added)
- trunk/DerelictSDL/Makefile.linux (deleted)
- trunk/DerelictSDL/README (modified) (2 diffs)
- trunk/DerelictSDL/build-linux.sh (added)
- trunk/DerelictSDLImage/Makefile.linux (deleted)
- trunk/DerelictSDLImage/README (modified) (2 diffs)
- trunk/DerelictSDLImage/build-linux.sh (added)
- trunk/DerelictSDLMixer/Makefile.linux (deleted)
- trunk/DerelictSDLMixer/README (modified) (1 diff)
- trunk/DerelictSDLMixer/build-linux.sh (added)
- trunk/DerelictSDLNet/Makefile.linux (deleted)
- trunk/DerelictSDLNet/README (modified) (1 diff)
- trunk/DerelictSDLNet/build-linux.sh (added)
- trunk/DerelictSDLttf/Makefile.linux (deleted)
- trunk/DerelictSDLttf/README (modified) (1 diff)
- trunk/DerelictSDLttf/build-linux.sh (added)
- trunk/DerelictUtil/Makefile.linux (deleted)
- trunk/DerelictUtil/build-linux.sh (added)
- trunk/build-config.sh (added)
- trunk/build-linux.sh (added)
- trunk/docs/al.html (modified) (1 diff)
- trunk/docs/build.html (modified) (5 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
r105 r126 19 19 To build DerelictAL on Linux: 20 20 21 1) ensure that both dmd and gcc are on your path 21 1) ensure that Derek Parnell's Build utility is on your path OR that the path 22 to it is configured in build-config.sh in your toplevel Derelict directory 23 (henceforth known as <derelict_dir>). See the documentation in 24 <derelict_dir>/docs/build.html for more information on setting up Build and 25 configuring Derelict's Build scripts. 22 26 2) from a command prompt, cd to <derelict_dir>/DerelictAL 23 3) type 'make -fMakefule.linux' or 'make -fMakefule.linux all' to build libderelictAL.a 24 4) optionally type 'make -fMakefule.linux clean' to delete all object files OR 25 optionally type 'make -fMakefule.linux cleanall' to delete all object and lib files 26 27 -------------------------------------------------------------------------------- 28 USING 29 -------------------------------------------------------------------------------- 30 To learn how to use DerelictAL, please see the documentaion in derelict/docs/al.html. 27 3) type ./build-linux 28 4) when the build completes, libderelictAL.a will be located in <derelict_dir>\lib. trunk/DerelictGL/README
r108 r126 19 19 To build DerelictGL on Linux: 20 20 21 1) ensure that both dmd and gcc are on your path 21 1) ensure that Derek Parnell's Build utility is on your path OR that the path 22 to it is configured in build-config.sh in your toplevel Derelict directory 23 (henceforth known as <derelict_dir>). See the documentation in 24 <derelict_dir>/docs/build.html for more information on setting up Build and 25 configuring Derelict's Build scripts. 22 26 2) from a command prompt, cd to <derelict_dir>/DerelictGL 23 3) type 'make -fMakefule.linux' or 'make -fMakefule.linux all' to build libderelictGL.a 24 4) optionally type 'make -fMakefule.linux clean' to delete all object files OR 25 optionally type 'make -fMakefule.linux cleanall' to delete all object and lib files 26 27 -------------------------------------------------------------------------------- 28 USING 29 -------------------------------------------------------------------------------- 30 To learn how to use DerelictGL, please see the documentaion in derelict/docs/gl.html. 27 3) type ./build-linux 28 4) when the build completes, libderelictGL.a will be located in <derelict_dir>\lib. trunk/DerelictGLFW/README
r108 r126 1 ================================================================================2 DerelictGLFW3 ================================================================================4 5 1 -------------------------------------------------------------------------------- 6 2 BUILDING … … 20 16 21 17 22 On Linux: 23 1) ensure that both dmd and gcc are on your path 18 On DerelictGLFW on Linux: 19 1) ensure that Derek Parnell's Build utility is on your path OR that the path 20 to it is configured in build-config.sh in your toplevel Derelict directory 21 (henceforth known as <derelict_dir>). See the documentation in 22 <derelict_dir>/docs/build.html for more information on setting up Build and 23 configuring Derelict's Build scripts. 24 24 2) from a command prompt, cd to <derelict_dir>/DerelictGLFW 25 3) type 'make' or 'make all' to build derelictGLFW.a 26 4) optionally type 'make clean' to delete all object files OR 27 optionally type 'make cleanall' to delete all object and lib files. 25 3) type ./build-linux 26 4) when the build completes, libderelictGLFW.a will be located in <derelict_dir>\lib. 28 27 29 28 ----------------------------------------------------------------- trunk/DerelictGLU/README
r108 r126 1 ================================================================================2 DerelictGLU3 ================================================================================4 1 -------------------------------------------------------------------------------- 5 2 BUILDING 6 3 -------------------------------------------------------------------------------- 7 Before building, ensure you have DerelictUtil and DerelictGL on your system. Both8 are required by DerelictGLU imports and links with both packages.9 4 10 5 -------------------------------------------------------------------------------- … … 24 19 To build DerelictGLU on Linux: 25 20 26 1) ensure that both dmd and gcc are on your path 21 1) ensure that Derek Parnell's Build utility is on your path OR that the path 22 to it is configured in build-config.sh in your toplevel Derelict directory 23 (henceforth known as <derelict_dir>). See the documentation in 24 <derelict_dir>/docs/build.html for more information on setting up Build and 25 configuring Derelict's Build scripts. 27 26 2) from a command prompt, cd to <derelict_dir>/DerelictGLU 28 3) type 'make -fMakefule.linux' or 'make -fMakefule.linux all' to build libderelictGLU.a 29 4) optionally type 'make -fMakefule.linux clean' to delete all object files OR 30 optionally type 'make -fMakefule.linux cleanall' to delete all object and lib files 27 3) type ./build-linux 28 4) when the build completes, libderelictGLU.a will be located in <derelict_dir>\lib. trunk/DerelictSDL/README
r105 r126 1 ================================================================================2 DerelictSDL3 ================================================================================4 DerelictSDL is a D package which allows you to use SDL in your D programs5 without the need to link to an import library. This gives you control over how6 to handle the case where the SDL shared library is not available on the7 user's machine.8 9 This version of DerelictSDL requires SDL 1.2.7 or later.10 11 -------------------------------------------------------------------------------12 USING13 --------------------------------------------------------------------------------14 You can use DerelictSDL in your project by first adding the Derelict source path15 to your compile command line with the -I switch (-I<derelict_dir>/DerelictSDL) and16 either by adding all the source/obj files to your makefile, or by building and17 linking with derelictSDL.lib (see the section entitled 'BUILDING' below for build18 instructions).19 20 In your code, you need to import the derelict.sdl.sdl module.21 22 ++++++++++++++++++++++++++ CODE +++++++++++++++++++++++++++++++++++++++++++++23 24 import derelict.sdl.sdl;25 26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++27 28 Before calling any SDL functions, you need to make a call to DerelictSDL_Load.29 This will load the shared library.30 31 ++++++++++++++++++++++++++ CODE +++++++++++++++++++++++++++++++++++++++++++++32 33 // load the shared library - the try...catch block is optional of course34 try35 {36 DerelictSDL_Load();37 }38 catch(Exception e)39 {40 ...41 }42 43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++44 45 From that point you can call SDL functions as normal.46 47 ********************************************************************************48 IMPORTANT49 ********************************************************************************50 DerelictSDL_Load attempts to load the SDL shared library using a filename appropriate51 for the Operating System. On Windows, this is SDL.dll, and on Linux, libSDL.so.52 The appropriate shared library (or symlink on Linux) must be on the path for it53 to be loaded successfully.54 55 1 -------------------------------------------------------------------------------- 56 2 BUILDING … … 73 19 To build DerelictSDL on Linux: 74 20 75 1) ensure that both dmd and gcc are on your path 21 1) ensure that Derek Parnell's Build utility is on your path OR that the path 22 to it is configured in build-config.sh in your toplevel Derelict directory 23 (henceforth known as <derelict_dir>). See the documentation in 24 <derelict_dir>/docs/build.html for more information on setting up Build and 25 configuring Derelict's Build scripts. 76 26 2) from a command prompt, cd to <derelict_dir>/DerelictSDL 77 3) type 'make -fMakefule.linux' or 'make -fMakefule.linux all' to build libderelictSDL.a 78 4) optionally type 'make -fMakefule.linux clean' to delete all object files OR 79 optionally type 'make -fMakefule.linux cleanall' to delete all object and lib files 27 3) type ./build-linux 28 4) when the build completes, libderelictSDL.a will be located in <derelict_dir>\lib. trunk/DerelictSDLImage/README
r109 r126 1 ================================================================================2 DerelictSDLImage3 ================================================================================4 1 -------------------------------------------------------------------------------- 5 2 BUILDING … … 22 19 To build DerelictSDLImage on Linux: 23 20 24 1) ensure that both dmd and gcc are on your path 21 1) ensure that Derek Parnell's Build utility is on your path OR that the path 22 to it is configured in build-config.sh in your toplevel Derelict directory 23 (henceforth known as <derelict_dir>). See the documentation in 24 <derelict_dir>/docs/build.html for more information on setting up Build and 25 configuring Derelict's Build scripts. 25 26 2) from a command prompt, cd to <derelict_dir>/DerelictSDLImage 26 3) type 'make -fMakefile.linux' or 'make -fMakefile.linux all' to build libderelictSDLImage.a 27 4) optionally type 'make -fMakefile.linux clean' to delete all object files OR 28 optionally type 'make -fMakefile.linux cleanall' to delete all object and lib files 27 3) type ./build-linux 28 4) when the build completes, libderelictSDLImage.a will be located in <derelict_dir>\lib. trunk/DerelictSDLMixer/README
r109 r126 22 22 To build DerelictSDLMixer on Linux: 23 23 24 1) ensure that both dmd and gcc are on your path 24 1) ensure that Derek Parnell's Build utility is on your path OR that the path 25 to it is configured in build-config.sh in your toplevel Derelict directory 26 (henceforth known as <derelict_dir>). See the documentation in 27 <derelict_dir>/docs/build.html for more information on setting up Build and 28 configuring Derelict's Build scripts. 25 29 2) from a command prompt, cd to <derelict_dir>/DerelictSDLMixer 26 3) type 'make -fMakefile.linux' or 'make -fMakefile.linux all' to build libderelictSDLMixer.a 27 4) optionally type 'make -fMakefile.linux clean' to delete all object files OR 28 optionally type 'make -fMakefile.linux cleanall' to delete all object and lib files 30 3) type ./build-linux 31 4) when the build completes, libderelictSDLMixer.a will be located in <derelict_dir>\lib. trunk/DerelictSDLNet/README
r109 r126 22 22 To build DerelictSDLNet on Linux: 23 23 24 1) ensure that both dmd and gcc are on your path 24 1) ensure that Derek Parnell's Build utility is on your path OR that the path 25 to it is configured in build-config.sh in your toplevel Derelict directory 26 (henceforth known as <derelict_dir>). See the documentation in 27 <derelict_dir>/docs/build.html for more information on setting up Build and 28 configuring Derelict's Build scripts. 25 29 2) from a command prompt, cd to <derelict_dir>/DerelictSDLNet 26 3) type 'make -fMakefile.linux' or 'make -fMakefile.linux all' to build libderelictSDLNet.a 27 4) optionally type 'make -fMakefile.linux clean' to delete all object files OR 28 optionally type 'make -fMakefile.linux cleanall' to delete all object and lib files 30 3) type ./build-linux 31 4) when the build completes, libderelictSDLNet.a will be located in <derelict_dir>\lib. trunk/DerelictSDLttf/README
r109 r126 18 18 To build DerelictSDLttf on Linux: 19 19 20 1) ensure that both dmd and gcc are on your path 20 1) ensure that Derek Parnell's Build utility is on your path OR that the path 21 to it is configured in build-config.sh in your toplevel Derelict directory 22 (henceforth known as <derelict_dir>). See the documentation in 23 <derelict_dir>/docs/build.html for more information on setting up Build and 24 configuring Derelict's Build scripts. 21 25 2) from a command prompt, cd to <derelict_dir>/DerelictSDLttf 22 3) type 'make -fMakefile.linux' or 'make -fMakefile.linux all' to build libderelictSDLttf.a 23 4) optionally type 'make -fMakefile.linux clean' to delete all object files OR 24 optionally type 'make -fMakefile.linux cleanall' to delete all object and lib files 26 3) type ./build-linux 27 4) when the build completes, libderelictSDLttf.a will be located in <derelict_dir>\lib. trunk/docs/al.html
r119 r126 88 88 </p> 89 89 <p><ol> 90 <li>ensure that both dmd and gcc are on your path</li> 91 <li>from a command prompt, cd to [derelict_dir]/DerelictAL</li> 92 <li>type 'make' or 'make all' to build libderelictAL.a</li> 93 <li>optionally type 'make clean' to delete all object files OR 94 optionally type 'make cleanall' to delete all object and lib files.</li> 90 <li>ensure that Derek Parnell's Build utility is on your path OR that the path 91 to it is configured in build-config.sh in your toplevel Derelict directory 92 (henceforth known as <derelict_dir>). See the documentation in 93 <derelict_dir>/docs/build.html for more information on setting up Build and 94 configuring Derelict's Build scripts.</li> 95 <li>from a command prompt, cd to <derelict_dir>/DerelictAL</li> 96 <li>type ./build-linux</li> 97 <li>when the build completes, libderelictAL.a will be located in <derelict_dir>/lib.</li> 95 98 </ol></p> 96 99 trunk/docs/build.html
r116 r126 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 me</tt> on Linux.</li>54 <li>type <tt>buildme</tt> on windows, or <tt>./build-linux</tt> on Linux.</li> 55 55 </ol> 56 56 </p><p> … … 58 58 complete, the resulting library files will be found in the <tt>lib</tt> directory 59 59 ([derelict_dir]/lib). You may then leave them there or copy them elsewhere 60 as you wish. If you would ever like to delete all of the libraries, execute the 61 <tt>cleanlib</tt> script in the top-level Derelict directory. 60 as you wish. If you would ever like to delete all of the libraries, on Windows 61 you can execute the <tt>cleanlib</tt> script in the top-level Derelict directory. 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>. 62 64 </p> 63 65 <p> 64 66 <b>NOTE:</b> By default, Derelict is configured to build with debug information 65 (-debug -g with DMD). Passing 'release' as an argument to the <tt>buildme</tt> 66 command (<tt>buildme release</tt> will cause the Derelict libraries to be built 67 (-debug -g with DMD). Passing 'release' as an argument to the <tt>buildme</tt> 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 built 67 70 in release mode (-release -O with DMD). 68 71 … … 73 76 <p><ol> 74 77 <li>CD to the package's directory ([derelict_dir]/[package_name]).</li> 75 <li>type <tt>buildme</tt> on windows, or <tt>./build me</tt> on Linux.</li>78 <li>type <tt>buildme</tt> on windows, or <tt>./build-linux</tt> on Linux.</li> 76 79 </ol> 77 80 </p><p> … … 88 91 on Windows and <i>scriptname</i>.sh on Linux. 89 92 <p> 90 The Build configuration script is named <tt>buildconfig</tt> and is located in 91 the top-level Derelict directory. Open this file in a text editor and you will 93 The Build configuration script for Windows is named <tt>buildconfig.bat</tt> and 94 for Linux is named <tt>build-config.sh</tt>. The script is located in the 95 top-level Derelict directory. Open this file in a text editor and you will 92 96 see that the script sets several environment variables. A descritpion of each 93 97 variable and what it means follows: … … 108 112 be used instead. Feel free to change this default behavior as you wish. 109 113 110 <li><b>COMMON_ARGS</b>: This is where you put command line arguments that may 111 be shared between both the release and debug builds. All of the preconfigured 112 options listed here <b>are required</b> for the build to complete successfully, 113 with the exception of the <tt>-cleanup</tt> argument (which you may safely remove 114 if you wish to keep the compiled object files rather than deleting them).</li> 114 <li><b>COMMON_ARGS</b>: (Windows only) This is where you put command line arguments 115 that may be shared between both the release and debug builds. All of the 116 preconfigured options listed here <b>are required</b> for the build to complete 117 successfully, with the exception of the <tt>-cleanup</tt> argument (which you may 118 safely remove if you wish to keep the compiled object files rather than 119 deleting them). On Linux, the common args are lumped together in the echo statement 120 at the bottom of build-config.sh and may be configured there.</li> 115 121 </ul> 116 122 </p><p> 117 You will notice one more variable at the end of the file, called <b>CONFIG_STATUS</b>. 118 <font color="red"><b>DO NOT CHANGE THIS</b></font>. When building multiple packages, 119 this variable is used to prevent the config script from being run multiple times 120 (which can cause the build process to halt because of errors). 123 In buildconfig.bat (Windows) You will notice one more variable at the end of the 124 file, called <b>CONFIG_STATUS</b>. <font color="red"><b>DO NOT CHANGE THIS</b></font>. 125 When building multiple packages, this variable is used to prevent the config 126 script from being run multiple times (which can cause the build process to halt 127 because of errors). 121 128 </p> 122 129 trunk/docs/gl.html
r119 r126 77 77 </p> 78 78 <p><ol> 79 <li>ensure that both dmd and gcc are on your path</li> 80 <li>from a command prompt, cd to [derelict_dir]/DerelictGL</li> 81 <li>type 'make' or 'make all' to build libderelictGL.a</li> 82 <li>optionally type 'make clean' to delete all object files OR 83 optionally type 'make cleanall' to delete all object and lib files.</li> 79 <li>ensure that Derek Parnell's Build utility is on your path OR that the path 80 to it is configured in build-config.sh in your toplevel Derelict directory 81 (henceforth known as <derelict_dir>). See the documentation in 82 <derelict_dir>/docs/build.html for more information on setting up Build and 83 configuring Derelict's Build scripts.</li> 84 <li>from a command prompt, cd to <derelict_dir>/DerelictGL</li> 85 <li>type ./build-linux</li> 86 <li>when the build completes, libderelictGL.a will be located in <derelict_dir>/lib.</li> 84 87 </ol></p> 85 88 trunk/docs/glfw.html
r112 r126 84 84 </p> 85 85 <p><ol> 86 <li>ensure that both dmd and gcc are on your path</li> 87 <li>from a command prompt, cd to [derelict_dir]/DerelictGLFW</li> 88 <li>type 'make' or 'make all' to build derelictGLFW.a</li> 89 <li>optionally type 'make clean' to delete all object files OR 90 optionally type 'make cleanall' to delete all object and lib files.</li> 86 <li>ensure that Derek Parnell's Build utility is on your path OR that the path 87 to it is configured in build-config.sh in your toplevel Derelict directory 88 (henceforth known as <derelict_dir>). See the documentation in 89 <derelict_dir>/docs/build.html for more information on setting up Build and 90 configuring Derelict's Build scripts.</li> 91 <li>from a command prompt, cd to <derelict_dir>/DerelictGLFW</li> 92 <li>type ./build-linux</li> 93 <li>when the build completes, libderelictGLFW.a will be located in <derelict_dir>/lib.</li> 91 94 </ol></p> 92 95 trunk/docs/glu.html
r119 r126 96 96 </p> 97 97 <p><ol> 98 <li>ensure that both dmd and gcc are on your path</li> 99 <li>from a command prompt, cd to [derelict_dir]/DerelictGLU</li> 100 <li>type 'make' or 'make all' to build libderelictGLU.a</li> 101 <li>optionally type 'make clean' to delete all object files OR 102 optionally type 'make cleanall' to delete all object and lib files.</li> 98 <li>ensure that Derek Parnell's Build utility is on your path OR that the path 99 to it is configured in build-config.sh in your toplevel Derelict directory 100 (henceforth known as <derelict_dir>). See the documentation in 101 <derelict_dir>/docs/build.html for more information on setting up Build and 102 configuring Derelict's Build scripts.</li> 103 <li>from a command prompt, cd to <derelict_dir>/DerelictGLU</li> 104 <li>type ./build-linux</li> 105 <li>when the build completes, libderelictGLU.a will be located in <derelict_dir>/lib.</li> 103 106 </ol></p> 104 107 trunk/docs/il.html
r124 r126 74 74 </p> 75 75 <p><ol> 76 <li>ensure that both dmd and gcc are on your path</li> 77 <li>from a command prompt, cd to [derelict_dir]/DerelictIL</li> 78 <li>type 'make' or 'make all' to build libderelictIL.a</li> 79 <li>optionally type 'make clean' to delete all object files OR 80 optionally type 'make cleanall' to delete all object and lib files.</li> 76 <li>ensure that Derek Parnell's Build utility is on your path OR that the path 77 to it is configured in build-config.sh in your toplevel Derelict directory 78 (henceforth known as <derelict_dir>). See the documentation in 79 <derelict_dir>/docs/build.html for more information on setting up Build and 80 configuring Derelict's Build scripts.</li> 81 <li>from a command prompt, cd to <derelict_dir>/DerelictIL</li> 82 <li>type ./build-linux</li> 83 <li>when the build completes, libderelictIL.a will be located in <derelict_dir>/lib.</li> 81 84 </ol></p> 82 85 trunk/docs/ilu.html
r124 r126 74 74 </p> 75 75 <p><ol> 76 <li>ensure that both dmd and gcc are on your path</li> 77 <li>from a command prompt, cd to [derelict_dir]/DerelictILU</li> 78 <li>type 'make' or 'make all' to build libderelictILU.a</li> 79 <li>optionally type 'make clean' to delete all object files OR 80 optionally type 'make cleanall' to delete all object and lib files.</li> 76 <li>ensure that Derek Parnell's Build utility is on your path OR that the path 77 to it is configured in build-config.sh in your toplevel Derelict directory 78 (henceforth known as <derelict_dir>). See the documentation in 79 <derelict_dir>/docs/build.html for more information on setting up Build and 80 configuring Derelict's Build scripts.</li> 81 <li>from a command prompt, cd to <derelict_dir>/DerelictILU</li> 82 <li>type ./build-linux</li> 83 <li>when the build completes, libderelictILU.a will be located in <derelict_dir>/lib.</li> 81 84 </ol></p> 82 85 trunk/docs/ilut.html
r124 r126 74 74 </p> 75 75 <p><ol> 76 <li>ensure that both dmd and gcc are on your path</li> 77 <li>from a command prompt, cd to [derelict_dir]/DerelictILUT</li> 78 <li>type 'make' or 'make all' to build libderelictILU.a</li> 79 <li>optionally type 'make clean' to delete all object files OR 80 optionally type 'make cleanall' to delete all object and lib files.</li> 76 <li>ensure that Derek Parnell's Build utility is on your path OR that the path 77 to it is configured in build-config.sh in your toplevel Derelict directory 78 (henceforth known as <derelict_dir>). See the documentation in 79 <derelict_dir>/docs/build.html for more information on setting up Build and 80 configuring Derelict's Build scripts.</li> 81 <li>from a command prompt, cd to <derelict_dir>/DerelictILUT</li> 82 <li>type ./build-linux</li> 83 <li>when the build completes, libderelictILUT.a will be located in <derelict_dir>/lib.</li> 81 84 </ol></p> 82 85 trunk/docs/sdl.html
r119 r126 87 87 </p> 88 88 <p><ol> 89 <li>ensure that both dmd and gcc are on your path</li> 90 <li>from a command prompt, cd to [derelict_dir]/DerelictSDL</li> 91 <li>type 'make' or 'make all' to build libderelictSDL.a</li> 92 <li>optionally type 'make clean' to delete all object files OR 93 optionally type 'make cleanall' to delete all object and lib files.</li> 89 <li>ensure that Derek Parnell's Build utility is on your path OR that the path 90 to it is configured in build-config.sh in your toplevel Derelict directory 91 (henceforth known as <derelict_dir>). See the documentation in 92 <derelict_dir>/docs/build.html for more information on setting up Build and 93 configuring Derelict's Build scripts.</li> 94 <li>from a command prompt, cd to <derelict_dir>/DerelictSDL</li> 95 <li>type ./build-linux</li> 96 <li>when the build completes, libderelictSDL.a will be located in <derelict_dir>/lib.</li> 94 97 </ol></p> 95 98 trunk/docs/sdlimg.html
r119 r126 75 75 </p> 76 76 <p><ol> 77 <li>ensure that both dmd and gcc are on your path</li> 78 <li>from a command prompt, cd to [derelict_dir]/DerelictSDLImage</li> 79 <li>type 'make' or 'make all' to build libderelictSDLImage.a</li> 80 <li>optionally type 'make clean' to delete all object files OR 81 optionally type 'make cleanall' to delete all object and lib files.</li> 77 <li>ensure that Derek Parnell's Build utility is on your path OR that the path 78 to it is configured in build-config.sh in your toplevel Derelict directory 79 (henceforth known as <derelict_dir>). See the documentation in 80 <derelict_dir>/docs/build.html for more information on setting up Build and 81 configuring Derelict's Build scripts.</li> 82 <li>from a command prompt, cd to <derelict_dir>/DerelictSDLImage</li> 83 <li>type ./build-linux</li> 84 <li>when the build completes, libderelictSDLImage.a will be located in <derelict_dir>/lib.</li> 82 85 </ol></p> 83 86 </body> trunk/docs/sdlmix.html
r119 r126 79 79 </p> 80 80 <p><ol> 81 <li>ensure that both dmd and gcc are on your path</li> 82 <li>from a command prompt, cd to [derelict_dir]/DerelictSDLMixer</li> 83 <li>type 'make' or 'make all' to build libderelictSDLMixer.a</li> 84 <li>optionally type 'make clean' to delete all object files OR 85 optionally type 'make cleanall' to delete all object and lib files.</li> 81 <li>ensure that Derek Parnell's Build utility is on your path OR that the path 82 to it is configured in build-config.sh in your toplevel Derelict directory 83 (henceforth known as <derelict_dir>). See the documentation in 84 <derelict_dir>/docs/build.html for more information on setting up Build and 85 configuring Derelict's Build scripts.</li> 86 <li>from a command prompt, cd to <derelict_dir>/DerelictSDLMixer</li> 87 <li>type ./build-linux</li> 88 <li>when the build completes, libderelictSDLMixer.a will be located in <derelict_dir>/lib.</li> 86 89 </ol></p> 87 90 </body> trunk/docs/sdlnet.html
r119 r126 75 75 </p> 76 76 <p><ol> 77 <li>ensure that both dmd and gcc are on your path</li> 78 <li>from a command prompt, cd to [derelict_dir]/DerelictSDLNet</li> 79 <li>type 'make' or 'make all' to build libderelictSDLNet.a</li> 80 <li>optionally type 'make clean' to delete all object files OR 81 optionally type 'make cleanall' to delete all object and lib files.</li> 77 <li>ensure that Derek Parnell's Build utility is on your path OR that the path 78 to it is configured in build-config.sh in your toplevel Derelict directory 79 (henceforth known as <derelict_dir>). See the documentation in 80 <derelict_dir>/docs/build.html for more information on setting up Build and 81 configuring Derelict's Build scripts.</li> 82 <li>from a command prompt, cd to <derelict_dir>/DerelictSDLNet</li> 83 <li>type ./build-linux</li> 84 <li>when the build completes, libderelictSDLNet.a will be located in <derelict_dir>/lib.</li> 82 85 </ol></p> 83 86 </body> trunk/docs/sdlttf.html
r119 r126 78 78 </p> 79 79 <p><ol> 80 <li>ensure that both dmd and gcc are on your path</li> 81 <li>from a command prompt, cd to [derelict_dir]/DerelictSDLttf</li> 82 <li>type 'make' or 'make all' to build libderelictSDLttf.a</li> 83 <li>optionally type 'make clean' to delete all object files OR 84 optionally type 'make cleanall' to delete all object and lib files.</li> 80 <li>ensure that Derek Parnell's Build utility is on your path OR that the path 81 to it is configured in build-config.sh in your toplevel Derelict directory 82 (henceforth known as <derelict_dir>). See the documentation in 83 <derelict_dir>/docs/build.html for more information on setting up Build and 84 configuring Derelict's Build scripts.</li> 85 <li>from a command prompt, cd to <derelict_dir>/DerelictSDLttf</li> 86 <li>type ./build-linux</li> 87 <li>when the build completes, libderelictSDLttf.a will be located in <derelict_dir>/lib.</li> 85 88 </ol></p> 86 89 </body>
