Committing in .
authorJouk Jansen <joukj@hrem.stm.tudelft.nl>
Fri, 20 May 2005 11:43:54 +0000 (11:43 +0000)
committerJouk Jansen <joukj@hrem.stm.tudelft.nl>
Fri, 20 May 2005 11:43:54 +0000 (11:43 +0000)
 Update openVMS compile support

 Modified Files:
  Mesa/progs/demos/descrip.mms
  Mesa/src/mesa/shader/slang/descrip.mms
  Mesa/src/mesa/tnl/descrip.mms
 ----------------------------------------------------------------------

progs/demos/descrip.mms
src/mesa/shader/slang/descrip.mms
src/mesa/tnl/descrip.mms

index 3fc9c38e4f9ebf001d62463b993babab79509be7..cc9350ce6657d392cc3eac82a0a8c3aa4b6a76e9 100644 (file)
@@ -1,6 +1,6 @@
 # Makefile for GLUT-based demo programs for VMS
-# contributed by Jouk Jansen  joukj@crys.chem.uva.nl
-
+# contributed by Jouk Jansen  joukj@hrem.stm.tudelft.nl
+# Last update : 20 May 2005
 
 .first
        define gl [--.include.gl]
@@ -22,7 +22,7 @@ LIB_DEP = [--.lib]$(GL_LIB) [--.lib]$(GLU_LIB) [--.lib]$(GLUT_LIB)
 
 
 PROGS = bounce.exe;,clearspd.exe;,drawpix.exe;,gamma.exe;,gears.exe;,\
-       glinfo.exe;,glutfx.exe;,isosurf.exe;,morph3d.exe;,osdemo.exe;,\
+       glinfo.exe;,glutfx.exe;,isosurf.exe;,morph3d.exe;,\
        paltex.exe;,pointblast.exe;,reflect.exe;,spectex.exe;,stex3d.exe;,\
        tessdemo.exe;,texcyl.exe;,texobj.exe;,trispd.exe;,winpos.exe;
 
@@ -53,7 +53,6 @@ glutfx.exe; : glutfx.obj $(LIB_DEP)
 isosurf.exe; : isosurf.obj $(LIB_DEP) [-.util]readtex.obj
        cxxlink $(MMS$TARGET_NAME),[-.util]readtex.obj,$(GL_LIBS)
 morph3d.exe; : morph3d.obj $(LIB_DEP)
-osdemo.exe; : osdemo.obj $(LIB_DEP)
 paltex.exe; : paltex.obj $(LIB_DEP)
 pointblast.exe; : pointblast.obj $(LIB_DEP)
 reflect.exe; : reflect.obj [-.util]readtex.obj [-.util]showbuffer.obj\
@@ -79,7 +78,6 @@ glinfo.obj : glinfo.c
 glutfx.obj : glutfx.c
 isosurf.obj : isosurf.c
 morph3d.obj : morph3d.c
-osdemo.obj : osdemo.c
 paltex.obj : paltex.c
 pointblast.obj : pointblast.c
 reflect.obj : reflect.c
index 464d8a3948b6c8740dea530ae9e4f3e65d1a3d92..2a7683ad3a14573527a102b96c0080056f23bfbc 100644 (file)
@@ -1,6 +1,6 @@
 # Makefile for core library for VMS
 # contributed by Jouk Jansen  joukj@hrem.stm.tudelft.nl
-# Last revision : 3 May 2005
+# Last revision : 20 May 2005
 
 .first
        define gl [----.include.gl]
@@ -22,7 +22,10 @@ SOURCES = \
        slang_compile.c,slang_preprocess.c
 
 OBJECTS = \
-       slang_compile.obj,slang_preprocess.obj,slang_utility.obj
+       slang_compile.obj,slang_preprocess.obj,slang_utility.obj,\
+       slang_execute.obj,slang_assemble.obj,slang_assemble_conditional.obj,\
+       slang_assemble_constructor.obj,slang_assemble_typeinfo.obj,\
+       slang_storage.obj
 
 ##### RULES #####
 
@@ -40,3 +43,9 @@ clean :
 slang_compile.obj : slang_compile.c
 slang_preprocess.obj : slang_preprocess.c
 slang_utility.obj : slang_utility.c
+slang_execute.obj : slang_execute.c
+slang_assemble.obj : slang_assemble.c
+slang_assemble_conditional.obj : slang_assemble_conditional.c
+slang_assemble_constructor.obj : slang_assemble_constructor.c
+slang_assemble_typeinfo.obj : slang_assemble_typeinfo.c
+slang_storage.obj : slang_storage.c
index c2e35407830aeb909a56909b0117a327e67c4b00..2bc82b36dd39749e3679b52dfff80b56fd0b105e 100644 (file)
@@ -1,6 +1,6 @@
 # Makefile for core library for VMS
 # contributed by Jouk Jansen  joukj@hrem.stm.tudelft.nl
-# Last revision : 18 August 2004
+# Last revision : 20 May 2005
 
 .first
        define gl [---.include.gl]
@@ -22,14 +22,14 @@ SOURCES = t_array_api.c t_array_import.c t_context.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_vtx_eval.c t_vtx_exec.c t_save_playback.c t_save_loopback.c \
-       t_vertex.c t_vtx_generic.c t_vtx_x86.c t_vertex_c.c;
+       t_vertex.c t_vtx_generic.c t_vtx_x86.c t_vertex_generic.c
 
 OBJECTS = t_array_api.obj,t_array_import.obj,t_context.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_save_api.obj,t_vtx_api.obj,\
        t_vtx_eval.obj,t_vtx_exec.obj,t_save_playback.obj,t_save_loopback.obj,\
-       t_vertex.obj,t_vtx_generic.obj,t_vtx_x86.obj,t_vertex_c.obj
+       t_vertex.obj,t_vtx_generic.obj,t_vtx_x86.obj,t_vertex_generic.obj
 
 ##### RULES #####
 
@@ -66,4 +66,4 @@ t_save_loopback.obj : t_save_loopback.c
 t_vertex.obj : t_vertex.c
 t_vtx_x86.obj : t_vtx_x86.c
 t_vtx_generic.obj : t_vtx_generic.c
-t_vertex_c.obj : t_vertex_c.c
+t_vertex_generic.obj : t_vertex_generic.c