Committing in .
[mesa.git] / src / mesa / tnl / descrip.mms
1 # Makefile for core library for VMS
2 # contributed by Jouk Jansen joukj@hrem.stm.tudelft.nl
3 # Last revision : 16 June 2003
4
5 .first
6 define gl [---.include.gl]
7 define math [-.math]
8 define array_cache [-.array_cache]
9
10 .include [---]mms-config.
11
12 ##### MACROS #####
13
14 VPATH = RCS
15
16 INCDIR = [---.include],[-.main],[-.glapi],[-.shader]
17 LIBDIR = [---.lib]
18 CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)
19
20 SOURCES = t_array_api.c t_array_import.c t_context.c \
21 t_pipeline.c t_vb_fog.c t_save_api.c t_vtx_api.c \
22 t_vb_light.c t_vb_normals.c t_vb_points.c t_vb_program.c \
23 t_vb_render.c t_vb_texgen.c t_vb_texmat.c t_vb_vertex.c \
24 t_vtx_eval.c t_vtx_exec.c t_save_playback.c t_save_loopback.c \
25 t_vertex.c t_vtx_generic.c t_vtx_x86.c
26
27 OBJECTS = t_array_api.obj,t_array_import.obj,t_context.obj,\
28 t_pipeline.obj,t_vb_fog.obj,t_vb_light.obj,t_vb_normals.obj,\
29 t_vb_points.obj,t_vb_program.obj,t_vb_render.obj,t_vb_texgen.obj,\
30 t_vb_texmat.obj,t_vb_vertex.obj,t_save_api.obj,t_vtx_api.obj,\
31 t_vtx_eval.obj,t_vtx_exec.obj,t_save_playback.obj,t_save_loopback.obj,\
32 t_vertex.obj,t_vtx_generic.obj,t_vtx_x86.obj
33
34 ##### RULES #####
35
36 VERSION=Mesa V3.4
37
38 ##### TARGETS #####
39 # Make the library
40 $(LIBDIR)$(GL_LIB) : $(OBJECTS)
41 @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
42
43 clean :
44 purge
45 delete *.obj;*
46
47 t_array_api.obj : t_array_api.c
48 t_array_import.obj : t_array_import.c
49 t_context.obj : t_context.c
50 t_pipeline.obj : t_pipeline.c
51 t_vb_fog.obj : t_vb_fog.c
52 t_vb_light.obj : t_vb_light.c
53 t_vb_normals.obj : t_vb_normals.c
54 t_vb_points.obj : t_vb_points.c
55 t_vb_program.obj : t_vb_program.c
56 t_vb_render.obj : t_vb_render.c
57 t_vb_texgen.obj : t_vb_texgen.c
58 t_vb_texmat.obj : t_vb_texmat.c
59 t_vb_vertex.obj : t_vb_vertex.c
60 t_save_api.obj : t_save_api.c
61 t_vtx_api.obj : t_vtx_api.c
62 t_vtx_eval.obj : t_vtx_eval.c
63 t_vtx_exec.obj : t_vtx_exec.c
64 t_save_playback.obj : t_save_playback.c
65 t_save_loopback.obj : t_save_loopback.c
66 t_vertex.obj : t_vertex.c
67 t_vtx_x86.obj : t_vtx_x86.c
68 t_vtx_generic.obj : t_vtx_generic.c