Merge branch 'master' of git+ssh://joukj@git.freedesktop.org/git/mesa/mesa
[mesa.git] / src / mesa / tnl / descrip.mms
1 # Makefile for core library for VMS
2 # contributed by Jouk Jansen joukj@hrem.nano.tudelft.nl
3 # Last revision : 8 May 2007
4
5 .first
6 define gl [---.include.gl]
7 define math [-.math]
8 define vbo [-.vbo]
9 define shader [-.shader]
10 define swrast [-.swrast]
11 define array_cache [-.array_cache]
12
13 .include [---]mms-config.
14
15 ##### MACROS #####
16
17 VPATH = RCS
18
19 INCDIR = [---.include],[-.main],[-.glapi],[-.shader],[-.shader.slang]
20 LIBDIR = [---.lib]
21 CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ieee/ieee=denorm
22
23 SOURCES = t_context.c t_draw.c \
24 t_pipeline.c t_vb_fog.c \
25 t_vb_light.c t_vb_normals.c t_vb_points.c t_vb_program.c \
26 t_vb_render.c t_vb_texgen.c t_vb_texmat.c t_vb_vertex.c \
27 t_vertex.c \
28 t_vertex_generic.c t_vp_build.c
29
30 OBJECTS = t_context.obj,t_draw.obj,\
31 t_pipeline.obj,t_vb_fog.obj,t_vb_light.obj,t_vb_normals.obj,\
32 t_vb_points.obj,t_vb_program.obj,t_vb_render.obj,t_vb_texgen.obj,\
33 t_vb_texmat.obj,t_vb_vertex.obj,\
34 t_vertex.obj,t_vertex_generic.obj,\
35 t_vp_build.obj
36
37 ##### RULES #####
38
39 VERSION=Mesa V3.4
40
41 ##### TARGETS #####
42 # Make the library
43 $(LIBDIR)$(GL_LIB) : $(OBJECTS)
44 @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
45
46 clean :
47 purge
48 delete *.obj;*
49
50 t_context.obj : t_context.c
51 t_draw.obj : t_draw.c
52 t_pipeline.obj : t_pipeline.c
53 t_vb_fog.obj : t_vb_fog.c
54 t_vb_light.obj : t_vb_light.c
55 t_vb_normals.obj : t_vb_normals.c
56 t_vb_points.obj : t_vb_points.c
57 t_vb_program.obj : t_vb_program.c
58 t_vb_render.obj : t_vb_render.c
59 t_vb_texgen.obj : t_vb_texgen.c
60 t_vb_texmat.obj : t_vb_texmat.c
61 t_vb_vertex.obj : t_vb_vertex.c
62 t_vertex.obj : t_vertex.c
63 t_vertex_generic.obj : t_vertex_generic.c
64 t_vp_build.obj : t_vp_build.c