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