77b35c351f72904e52d9056e831a8fcc83334f74
[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 atifragshader.c \
23 arbfragparse.c \
24 arbprogparse.c \
25 arbprogram.c \
26 arbvertparse.c \
27 grammar_mesa.c \
28 nvfragparse.c \
29 nvprogram.c \
30 nvvertexec.c \
31 nvvertparse.c \
32 program.c \
33 shaderobjects.c
34
35 OBJECTS = \
36 atifragshader.obj,\
37 arbfragparse.obj,\
38 arbprogparse.obj,\
39 arbprogram.obj,\
40 arbvertparse.obj,\
41 grammar_mesa.obj,\
42 nvfragparse.obj,\
43 nvprogram.obj,\
44 nvvertexec.obj,\
45 nvvertparse.obj,\
46 program.obj,\
47 shaderobjects.obj
48
49
50 ##### RULES #####
51
52 VERSION=Mesa V3.4
53
54 ##### TARGETS #####
55 # Make the library
56 $(LIBDIR)$(GL_LIB) : $(OBJECTS)
57 @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
58
59 clean :
60 purge
61 delete *.obj;*
62
63 atifragshader.obj : atifragshader.c
64 arbfragparse.obj : arbfragparse.c
65 arbprogparse.obj : arbprogparse.c
66 arbprogram.obj : arbprogram.c
67 arbvertparse.obj : arbvertparse.c
68 grammar_mesa.obj : grammar_mesa.c
69 nvfragparse.obj : nvfragparse.c
70 nvprogram.obj : nvprogram.c
71 nvvertexec.obj : nvvertexec.c
72 nvvertparse.obj : nvvertparse.c
73 program.obj : program.c
74 shaderobjects.obj : shaderobjects.c