Take a stab at updating the VMS files.
[mesa.git] / src / mesa / shader / descrip.mms
1 # Makefile for core library for VMS
2 # contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
3 # Last revision : 23 March 2004
4
5 .first
6 define gl [---.include.gl]
7 define math [-.math]
8 define swrast [-.swrast]
9 define array_cache [-.array_cache]
10
11 .include [---]mms-config.
12
13 ##### MACROS #####
14
15 VPATH = RCS
16
17 INCDIR = [---.include],[-.main],[-.glapi]
18 LIBDIR = [---.lib]
19 CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)
20
21 SOURCES = \
22 arbfragparse.c \
23 arbprogparse.c \
24 arbprogram.c \
25 arbvertparse.c \
26 grammar_mesa.c \
27 nvfragparse.c \
28 nvprogram.c \
29 nvvertexec.c \
30 nvvertparse.c \
31 program.c
32
33 OBJECTS = \
34 arbfragparse.obj \
35 arbprogparse.obj \
36 arbprogram.obj \
37 arbvertparse.obj \
38 grammar_mesa.obj \
39 nvfragparse.obj \
40 nvprogram.obj \
41 nvvertexec.obj \
42 nvvertparse.obj \
43 program.obj
44
45
46 ##### RULES #####
47
48 VERSION=Mesa V3.4
49
50 ##### TARGETS #####
51 # Make the library
52 $(LIBDIR)$(GL_LIB) : $(OBJECTS)
53 @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
54
55 clean :
56 purge
57 delete *.obj;*
58
59
60 arbfragparse.obj : arbfragparse.c
61 arbprogparse.obj : arbprogparse.c
62 arbprogram.obj : arbprogram.c
63 arbvertparse.obj : arbvertparse.c
64 grammar_mesa.obj : grammar_mesa.c
65 nvfragparse.obj : nvfragparse.c
66 nvprogram.obj : nvprogram.c
67 nvvertexec.obj : nvvertexec.c
68 nvvertparse.obj : nvvertparse.c
69 program.obj : program.c