Changeset 53

Show
Ignore:
Timestamp:
10/31/04 22:33:14 (4 years ago)
Author:
aldacron
Message:

[DerelictGL]
* removed all references to GLee from the Makefile (oops)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/DerelictGL/Makefile

    r33 r53  
    1313    $(OGL.SRC.DIR)\gltypes.d 
    1414     
    15 GLEE.SRC.DIR = $(SRC.DIR) 
    16 GLEE.SRC = \ 
    17     $(SRC.DIR)\glee.d \ 
    18     $(SRC.DIR)\glConstants.d 
    19      
    2015OGL.OBJ.DIR = $(OBJ.DIR)\opengl 
    2116OGL.OBJ = \ 
    2217    $(OGL.OBJ.DIR)\gl.obj \ 
    2318    $(OGL.OBJ.DIR)\gltypes.obj 
    24      
    25 GLEE.OBJ.DIR = $(OBJ.DIR)\glee 
    26 GLEE.OBJ = \ 
    27     $(OGL.OBJ.DIR)\glee.obj \ 
    28     $(OGL.OBJ.DIR)\glConstants.obj  
    2919     
    3020OGL.LIB = $(LIB.DIR)\derelictGL.lib 
     
    3525    @rd /S /Q $(OGL.OBJ.DIR) 
    3626     
    37 clean_gleeobj: 
    38     @rd /S /Q $(GLEE.OBJ.DIR) 
    39      
    4027clean_lib: 
    4128    @del $(OGL.LIB) 
    4229 
    43 clean: clean_globj clean_gleeobj     
     30clean: clean_globj  
    4431 
    4532cleanall: clean clean_lib 
     
    4936    dmd $(OGL.SRC) -c $(DFLAGS) $(DINC) -od$(OGL.OBJ.DIR) 
    5037     
    51 glee: 
    52     @md $(GLEE.OBJ.DIR) 
    53     dmd $(GLEE.SRC) -c $(DFLAGS) $(DINC) -od$(OGL.OBJ.DIR) 
    54  
    5538lib_gl: 
    5639    lib $(LIBFLAGS) $(OGL.LIB) $(OGL.OBJ) 
    5740     
    58 lib_glglee: 
    59     lib $(LIBFLAGS) $(OGL.LIB) $(OGL.OBJ) $(GLEE.OBJ) 
    60      
    61 lib: gl glee lib_glglee 
     41lib: gl lib_gl 
    6242 
    63 noglee: gl lib_gl 
    64