aboutsummaryrefslogtreecommitdiff
path: root/src/mesa/array_cache/descrip.mms
diff options
context:
space:
mode:
authorftrapero <frantracer@gmail.com>2017-06-15 14:15:08 +0200
committerftrapero <frantracer@gmail.com>2017-06-15 14:15:08 +0200
commit8667d4d97a3e958a7f63c18c34a62469ba5d2079 (patch)
tree9eb12657744eb81745b1ddfc7fd3f2d33a45c979 /src/mesa/array_cache/descrip.mms
downloadnx-libs-8667d4d97a3e958a7f63c18c34a62469ba5d2079.tar.gz
nx-libs-8667d4d97a3e958a7f63c18c34a62469ba5d2079.tar.bz2
nx-libs-8667d4d97a3e958a7f63c18c34a62469ba5d2079.zip
Squashed 'nx-X11/extras/Mesa_6.4.1/' content from commit 53d1bc0
git-subtree-dir: nx-X11/extras/Mesa_6.4.1 git-subtree-split: 53d1bc081eb633aecbd5ab0bf3981f734a2102f2
Diffstat (limited to 'src/mesa/array_cache/descrip.mms')
-rw-r--r--src/mesa/array_cache/descrip.mms37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/mesa/array_cache/descrip.mms b/src/mesa/array_cache/descrip.mms
new file mode 100644
index 000000000..3555f83d8
--- /dev/null
+++ b/src/mesa/array_cache/descrip.mms
@@ -0,0 +1,37 @@
+# Makefile for core library for VMS
+# contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
+# Last revision : 16 June 2003
+
+.first
+ define gl [---.include.gl]
+ define math [-.math]
+ define array_cache [-.array_cache]
+
+.include [---]mms-config.
+
+##### MACROS #####
+
+VPATH = RCS
+
+INCDIR = [---.include],[-.main],[-.glapi]
+LIBDIR = [---.lib]
+CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)
+
+SOURCES = ac_context.c ac_import.c
+
+OBJECTS = ac_context.obj,ac_import.obj
+##### RULES #####
+
+VERSION=Mesa V3.4
+
+##### TARGETS #####
+# Make the library
+$(LIBDIR)$(GL_LIB) : $(OBJECTS)
+ @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
+
+clean :
+ purge
+ delete *.obj;*
+
+ac_context.obj : ac_context.c
+ac_import.obj : ac_import.c