
1) change compilation on VMS to use IEEE floating points 2) one more problem with _mesa_sprintf solved Modified Files: Mesa/docs/README.VMS Mesa/progs/demos/descrip.mms Mesa/progs/tests/descrip.mms Mesa/progs/util/descrip.mms Mesa/progs/xdemos/descrip.mms Mesa/src/glu/mesa/descrip.mms Mesa/src/glu/sgi/descrip.mms Mesa/src/glut/glx/descrip.mms Mesa/src/mesa/array_cache/descrip.mms Mesa/src/mesa/drivers/common/descrip.mms Mesa/src/mesa/drivers/osmesa/descrip.mms Mesa/src/mesa/drivers/x11/descrip.mms Mesa/src/mesa/glapi/descrip.mms Mesa/src/mesa/main/descrip.mms Mesa/src/mesa/main/texobj.c Mesa/src/mesa/math/descrip.mms Mesa/src/mesa/shader/descrip.mms Mesa/src/mesa/shader/grammar/descrip.mms Mesa/src/mesa/shader/slang/descrip.mms Mesa/src/mesa/swrast/descrip.mms Mesa/src/mesa/swrast_setup/descrip.mms Mesa/src/mesa/tnl/descrip.mms ----------------------------------------------------------------------
43 lines
820 B
Plaintext
43 lines
820 B
Plaintext
# Makefile for GLUT-based demo programs for VMS
|
|
# contributed by Jouk Jansen joukj@crys.chem.uva.nl
|
|
|
|
|
|
.first
|
|
define gl [--.include.gl]
|
|
|
|
.include [--]mms-config.
|
|
|
|
##### MACROS #####
|
|
|
|
INCDIR = ([--.include],[-.util])
|
|
CFLAGS = /include=$(INCDIR)/prefix=all/name=(as_is,short)/float=ieee/ieee=denorm
|
|
|
|
.ifdef SHARE
|
|
GL_LIBS = $(XLIBS)
|
|
LIB_DEP = [--.lib]$(GL_SHAR) [--.lib]$(GLU_SHAR) [--.lib]$(GLUT_SHAR)
|
|
.else
|
|
GL_LIBS = [--.lib]libGLUT/l,libMesaGLU/l,libMesaGL/l,$(XLIBS)
|
|
LIB_DEP = [--.lib]$(GL_LIB) [--.lib]$(GLU_LIB) [--.lib]$(GLUT_LIB)
|
|
.endif
|
|
|
|
|
|
OBJS =readtex.obj,showbuffer.obj
|
|
|
|
|
|
##### RULES #####
|
|
.obj.exe :
|
|
cxxlink $(MMS$TARGET_NAME),$(GL_LIBS)
|
|
|
|
##### TARGETS #####
|
|
default :
|
|
$(MMS)$(MMSQUALIFIERS) $(OBJS)
|
|
|
|
clean :
|
|
delete *.obj;*
|
|
|
|
realclean :
|
|
delete *.obj;*
|
|
|
|
readtex.obj : readtex.c
|
|
showbuffer.obj : showbuffer.c
|