1# Makefile for core library for VMS 2# contributed by Jouk Jansen joukj@hrem.nano.tudelft.nl 3# Last revision : 3 October 2007 4 5.first 6 define gl [----.include.gl] 7 define math [--.math] 8 define tnl [--.tnl] 9 define vbo [--.vbo] 10 define swrast [--.swrast] 11 define swrast_setup [--.swrast_setup] 12 define array_cache [--.array_cache] 13 define drivers [-] 14 define glapi [--.glapi] 15 define main [--.main] 16 define shader [--.shader] 17 18.include [----]mms-config. 19 20##### MACROS ##### 21 22VPATH = RCS 23 24INCDIR = [----.include],[--.main],[--.glapi],[--.shader] 25LIBDIR = [----.lib] 26CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)/float=ieee/ieee=denorm 27 28SOURCES = osmesa.c 29 30OBJECTS = osmesa.obj 31 32##### RULES ##### 33 34VERSION=Mesa V3.4 35 36##### TARGETS ##### 37# Make the library 38$(LIBDIR)$(GL_LIB) : $(OBJECTS) 39 @ library $(LIBDIR)$(GL_LIB) $(OBJECTS) 40 41clean : 42 purge 43 delete *.obj;* 44 45osmesa.obj : osmesa.c 46