Clean up warnings in r300 code by making some symbols static, adding prototypes
[mesa.git] / src / mesa / drivers / x11 / 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 tnl [--.tnl]
9 define swrast [--.swrast]
10 define swrast_setup [--.swrast_setup]
11 define array_cache [--.array_cache]
12 define drivers [-]
13
14 .include [----]mms-config.
15
16 ##### MACROS #####
17
18 VPATH = RCS
19
20 INCDIR = [----.include],[--.main],[--.glapi]
21 LIBDIR = [----.lib]
22 CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)
23
24 SOURCES = fakeglx.c glxapi.c xfonts.c xm_api.c xm_dd.c xm_line.c xm_span.c\
25 xm_tri.c xm_buffer.c
26
27 OBJECTS =fakeglx.obj,glxapi.obj,xfonts.obj,xm_api.obj,xm_dd.obj,xm_line.obj,\
28 xm_span.obj,xm_tri.obj,xm_buffer.obj
29
30 ##### RULES #####
31
32 VERSION=Mesa V3.4
33
34 ##### TARGETS #####
35 # Make the library
36 $(LIBDIR)$(GL_LIB) : $(OBJECTS)
37 @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
38
39 clean :
40 purge
41 delete *.obj;*
42
43 fakeglx.obj : fakeglx.c
44 glxapi.obj : glxapi.c
45 xfonts.obj : xfonts.c
46 xm_api.obj : xm_api.c
47 xm_buffer.obj : xm_buffer.c
48 xm_dd.obj : xm_dd.c
49 xm_line.obj : xm_line.c
50 xm_span.obj : xm_span.c
51 xm_tri.obj : xm_tri.c