| @@ -1,6 +1,6 @@ | |||
| # Makefile for core library for VMS | |||
| # contributed by Jouk Jansen joukj@hrem.nano.tudelft.nl | |||
| # Last revision : 3 October 2007 | |||
| # Last revision : 29 September 2008 | |||
| .first | |||
| define gl [----.include.gl] | |||
| @@ -19,7 +19,8 @@ VPATH = RCS | |||
| INCDIR = [----.include],[--.main],[--.glapi],[--.shader] | |||
| LIBDIR = [----.lib] | |||
| CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ieee/ieee=denorm | |||
| CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)\ | |||
| /float=ieee/ieee=denorm/warn=disable=(PTRMISMATCH) | |||
| SOURCES = driverfuncs.c | |||
| @@ -1,9 +1,10 @@ | |||
| # Makefile for core library for VMS | |||
| # contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl | |||
| # Last revision : 16 June 2003 | |||
| # contributed by Jouk Jansen joukj@hrem.nano.tudelft.nl | |||
| # Last revision : 29 September 2008 | |||
| .first | |||
| define gl [---.include.gl] | |||
| define main [-.main] | |||
| .include [---]mms-config. | |||
| @@ -15,9 +16,9 @@ INCDIR = [---.include],[-.main] | |||
| LIBDIR = [---.lib] | |||
| CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ieee/ieee=denorm | |||
| SOURCES = glapi.c glthread.c | |||
| SOURCES = glapi.c glthread.c glapi_getproc.c | |||
| OBJECTS = glapi.obj,glthread.obj | |||
| OBJECTS = glapi.obj,glthread.obj,glapi_getproc.obj | |||
| ##### RULES ##### | |||
| @@ -35,3 +36,4 @@ clean : | |||
| glapi.obj : glapi.c | |||
| glthread.obj : glthread.c | |||
| glapi_getproc.obj : glapi_getproc.c | |||
| @@ -1,6 +1,6 @@ | |||
| # Makefile for core library for VMS | |||
| # contributed by Jouk Jansen joukj@hrem.nano.tudelft.nl | |||
| # Last revision : 2 October 2007 | |||
| # Last revision : 29 September 2008 | |||
| .first | |||
| define gl [---.include.gl] | |||
| @@ -21,6 +21,7 @@ CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ie | |||
| SOURCES =accum.c \ | |||
| api_arrayelt.c \ | |||
| api_exec.c \ | |||
| api_loopback.c \ | |||
| api_noop.c \ | |||
| api_validate.c \ | |||
| @@ -29,6 +30,7 @@ SOURCES =accum.c \ | |||
| blend.c \ | |||
| bufferobj.c \ | |||
| buffers.c \ | |||
| clear.c \ | |||
| clip.c \ | |||
| colortab.c \ | |||
| context.c \ | |||
| @@ -46,6 +48,7 @@ SOURCES =accum.c \ | |||
| extensions.c \ | |||
| fbobject.c \ | |||
| feedback.c \ | |||
| ffvertex_prog.c \ | |||
| fog.c \ | |||
| framebuffer.c \ | |||
| get.c \ | |||
| @@ -60,22 +63,29 @@ SOURCES =accum.c \ | |||
| matrix.c \ | |||
| mipmap.c \ | |||
| mm.c \ | |||
| multisample.c \ | |||
| pixel.c \ | |||
| pixelstore.c \ | |||
| points.c \ | |||
| polygon.c \ | |||
| rastpos.c \ | |||
| rbadaptors.c \ | |||
| readpix.c \ | |||
| renderbuffer.c \ | |||
| scissor.c \ | |||
| shaders.c \ | |||
| state.c \ | |||
| stencil.c \ | |||
| texcompress.c \ | |||
| texcompress_fxt1.c \ | |||
| texcompress_s3tc.c \ | |||
| texenv.c \ | |||
| texenvprogram.c \ | |||
| texformat.c \ | |||
| texgen.c \ | |||
| teximage.c \ | |||
| texobj.c \ | |||
| texparam.c \ | |||
| texrender.c \ | |||
| texstate.c \ | |||
| texstore.c \ | |||
| @@ -86,6 +96,7 @@ SOURCES =accum.c \ | |||
| OBJECTS=accum.obj,\ | |||
| api_arrayelt.obj,\ | |||
| api_exec.obj,\ | |||
| api_loopback.obj,\ | |||
| api_noop.obj,\ | |||
| api_validate.obj,\ | |||
| @@ -94,6 +105,7 @@ attrib.obj,\ | |||
| blend.obj,\ | |||
| bufferobj.obj,\ | |||
| buffers.obj,\ | |||
| clear.obj,\ | |||
| clip.obj,\ | |||
| colortab.obj,\ | |||
| context.obj,\ | |||
| @@ -111,6 +123,7 @@ execmem.obj,\ | |||
| extensions.obj,\ | |||
| fbobject.obj,\ | |||
| feedback.obj,\ | |||
| ffvertex_prog.obj,\ | |||
| fog.obj,\ | |||
| framebuffer.obj,\ | |||
| get.obj,\ | |||
| @@ -125,21 +138,28 @@ lines.obj,\ | |||
| matrix.obj,\ | |||
| mipmap.obj,\ | |||
| mm.obj,\ | |||
| multisample.obj,\ | |||
| pixel.obj,\ | |||
| pixelstore.obj,\ | |||
| points.obj,\ | |||
| polygon.obj,\ | |||
| rastpos.obj,\ | |||
| readpix.obj,\ | |||
| renderbuffer.obj,\ | |||
| scissor.obj,\ | |||
| shaders.obj,\ | |||
| state.obj,\ | |||
| stencil.obj,\ | |||
| texcompress.obj,\ | |||
| texcompress_fxt1.obj,\ | |||
| texcompress_s3tc.obj,\ | |||
| texenv.obj,\ | |||
| texenvprogram.obj,\ | |||
| texformat.obj,\ | |||
| texgen.obj,\ | |||
| teximage.obj,\ | |||
| texobj.obj,\ | |||
| texparam.obj,\ | |||
| texrender.obj,\ | |||
| texstate.obj,\ | |||
| texstore.obj,\ | |||
| @@ -226,3 +246,13 @@ vtxfmt.obj : vtxfmt.c | |||
| shaders.obj : shaders.c | |||
| queryobj.obj : queryobj.c | |||
| rbadaptors.obj : rbadaptors.c | |||
| clear.obj : clear.c | |||
| multisample.obj : multisample.c | |||
| scissor.obj : scissor.c | |||
| texenv.obj : texenv.c | |||
| texgen.obj : texgen.c | |||
| texparam.obj : texparam.c | |||
| readpix.obj : readpix.c | |||
| ffvertex_prog.obj : ffvertex_prog.c | |||
| api_exec.obj : api_exec.c | |||
| pixelstore.obj : pixelstore.c | |||
| @@ -1,6 +1,6 @@ | |||
| # Makefile for core library for VMS | |||
| # contributed by Jouk Jansen joukj@hrem.nano.tudelft.nl | |||
| # Last revision : 27 May 2008 | |||
| # Last revision : 29 September 2008 | |||
| .first | |||
| define gl [---.include.gl] | |||
| define math [-.math] | |||
| @@ -34,6 +34,7 @@ SOURCES = \ | |||
| prog_instruction.c \ | |||
| prog_parameter.c \ | |||
| prog_print.c \ | |||
| prog_cache.c \ | |||
| prog_statevars.c \ | |||
| shader_api.c prog_uniform.c | |||
| @@ -52,7 +53,7 @@ OBJECTS = \ | |||
| prog_parameter.obj,\ | |||
| prog_print.obj,\ | |||
| prog_statevars.obj,\ | |||
| shader_api.obj,prog_uniform.obj | |||
| shader_api.obj,prog_uniform.obj,prog_cache.obj | |||
| ##### RULES ##### | |||
| @@ -91,3 +92,4 @@ prog_print.obj : prog_print.c | |||
| prog_statevars.obj : prog_statevars.c | |||
| shader_api.obj : shader_api.c | |||
| prog_uniform.obj : prog_uniform.c | |||
| prog_cache.obj : prog_cache.c | |||
| @@ -1,12 +1,13 @@ | |||
| # Makefile for core library for VMS | |||
| # contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl | |||
| # Last revision : 1 June 2005 | |||
| # contributed by Jouk Jansen joukj@hrem.nano.tudelft.nl | |||
| # Last revision : 29 September 2008 | |||
| .first | |||
| define gl [----.include.gl] | |||
| define math [--.math] | |||
| define swrast [--.swrast] | |||
| define array_cache [--.array_cache] | |||
| define main [--.main] | |||
| .include [----]mms-config. | |||
| @@ -1,6 +1,6 @@ | |||
| # Makefile for core library for VMS | |||
| # contributed by Jouk Jansen joukj@hrem.nano.tudelft.nl | |||
| # Last revision : 30 November 2007 | |||
| # Last revision : 39 September 2008 | |||
| .first | |||
| define gl [---.include.gl] | |||
| @@ -27,13 +27,13 @@ SOURCES = t_context.c t_draw.c \ | |||
| t_pipeline.c t_vb_fog.c \ | |||
| t_vb_light.c t_vb_normals.c t_vb_points.c t_vb_program.c \ | |||
| t_vb_render.c t_vb_texgen.c t_vb_texmat.c t_vb_vertex.c \ | |||
| t_vertex.c \ | |||
| t_vertex.c t_rasterpos.c\ | |||
| t_vertex_generic.c t_vp_build.c | |||
| OBJECTS = t_context.obj,t_draw.obj,\ | |||
| t_pipeline.obj,t_vb_fog.obj,t_vb_light.obj,t_vb_normals.obj,\ | |||
| t_vb_points.obj,t_vb_program.obj,t_vb_render.obj,t_vb_texgen.obj,\ | |||
| t_vb_texmat.obj,t_vb_vertex.obj,\ | |||
| t_vb_texmat.obj,t_vb_vertex.obj,t_rasterpos.obj,\ | |||
| t_vertex.obj,t_vertex_generic.obj,\ | |||
| t_vp_build.obj | |||
| @@ -65,3 +65,4 @@ t_vb_vertex.obj : t_vb_vertex.c | |||
| t_vertex.obj : t_vertex.c | |||
| t_vertex_generic.obj : t_vertex_generic.c | |||
| t_vp_build.obj : t_vp_build.c | |||
| t_rasterpos.obj : t_rasterpos.c | |||