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