Changeset 33
- Timestamp:
- 07/22/04 13:50:54 (4 years ago)
- Files:
-
- trunk/DerelictGL/Makefile (modified) (3 diffs)
- trunk/DerelictGL/README (modified) (1 diff)
- trunk/DerelictGL/derelict/opengl/gl.d (modified) (2 diffs)
- trunk/DerelictGLU/Makefile (modified) (3 diffs)
- trunk/DerelictPY (added)
- trunk/DerelictPY/Makefile (added)
- trunk/DerelictPY/derelict (added)
- trunk/DerelictPY/derelict/python (added)
- trunk/DerelictPY/derelict/python/complexobject.d (added)
- trunk/DerelictPY/derelict/python/floatobject.d (added)
- trunk/DerelictPY/derelict/python/intobject.d (added)
- trunk/DerelictPY/derelict/python/object.d (added)
- trunk/DerelictPY/derelict/python/python.d (added)
- trunk/DerelictSDL/Makefile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/DerelictGL/Makefile
r31 r33 28 28 $(OGL.OBJ.DIR)\glConstants.obj 29 29 30 OGL.LIB = $(LIB.DIR)\derelictGL 30 OGL.LIB = $(LIB.DIR)\derelictGL.lib 31 31 32 32 DEFAULT: lib … … 39 39 40 40 clean_lib: 41 @del $(OGL.LIB) .lib41 @del $(OGL.LIB) 42 42 43 43 clean: clean_globj clean_gleeobj … … 54 54 55 55 lib_gl: 56 lib $(LIBFLAGS) $(OGL.LIB) .lib$(OGL.OBJ)56 lib $(LIBFLAGS) $(OGL.LIB) $(OGL.OBJ) 57 57 58 58 lib_glglee: 59 lib $(LIBFLAGS) $(OGL.LIB) .lib$(OGL.OBJ) $(GLEE.OBJ)59 lib $(LIBFLAGS) $(OGL.LIB) $(OGL.OBJ) $(GLEE.OBJ) 60 60 61 61 lib: gl glee lib_glglee 62 62 63 lib_noglee: gl lib_gl63 noglee: gl lib_gl 64 64 trunk/DerelictGL/README
r31 r33 128 128 2) from a command prompt, cd to <derelict_dir>\DerelictGL 129 129 3) type 'make' or 'make lib' to build derelictGL.lib with GLee 130 optionally type 'make lib_noglee' to build derelictGL.lib without GLee130 optionally type 'make noglee' to build derelictGL.lib without GLee 131 131 4) optionally type 'make clean' to delete all object files OR 132 132 optionally type 'make cleanall' to delete all object and lib files trunk/DerelictGL/derelict/opengl/gl.d
r31 r33 205 205 * Loads all core GL 1.0 & 1.1 functions 206 206 */ 207 private void DerelictGL_Load()207 private void loadGL() 208 208 { 209 209 // gl 1.0 … … 548 548 * the functions cannot be loaded, an Exception is thrown. 549 549 */ 550 public void dglLoad()550 public void DerelictGL_Load() 551 551 { 552 552 if(hgl !== null) trunk/DerelictGLU/Makefile
r31 r33 17 17 $(GLU.OBJ.DIR)\glu.obj 18 18 19 GLU.LIB = $(LIB.DIR)\derelictGLU 19 GLU.LIB = $(LIB.DIR)\derelictGLU.lib 20 20 21 21 DEFAULT: lib … … 25 25 26 26 clean_lib: 27 @del $(GLU.LIB) .lib27 @del $(GLU.LIB) 28 28 29 29 clean: clean_obj … … 34 34 @md $(GLU.OBJ.DIR) 35 35 dmd $(GLU.SRC) -c $(DFLAGS) $(DINC) -od$(GLU.OBJ.DIR) 36 lib $(LIBFLAGS) $(GLU.LIB) .lib$(GLU.OBJ)36 lib $(LIBFLAGS) $(GLU.LIB) $(GLU.OBJ) 37 37 trunk/DerelictSDL/Makefile
r31 r33 58 58 $(SDL.OBJ.DIR)\video.obj 59 59 60 SDL.LIB = $(LIB.DIR)\derelictSDL 60 SDL.LIB = $(LIB.DIR)\derelictSDL.lib 61 61 62 62 DEFAULT: lib … … 66 66 67 67 clean_lib: 68 @del $(SDL.LIB) .lib68 @del $(SDL.LIB) 69 69 70 70 clean: clean_obj … … 75 75 @md $(SDL.OBJ.DIR) 76 76 dmd $(SDL.SRC) -c $(DFLAGS) $(DINC) -od$(SDL.OBJ.DIR) 77 lib $(LIBFLAGS) $(SDL.LIB) .lib$(SDL.OBJ)77 lib $(LIBFLAGS) $(SDL.LIB) $(SDL.OBJ) 78 78
