Home | History | Annotate | Download | only in common
      1 # Makefile for core library for VMS
      2 # contributed by Jouk Jansen  joukj (a] 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 
     18 VPATH = RCS
     19 
     20 INCDIR = [----.include],[--.main],[--.glapi],[--.shader]
     21 LIBDIR = [----.lib]
     22 CFLAGS = /include=($(INCDIR),[])/define=(PTHREADS=1)/name=(as_is,short)\
     23 	/float=ieee/ieee=denorm/warn=disable=(PTRMISMATCH)
     24 
     25 SOURCES = driverfuncs.c
     26 
     27 OBJECTS =driverfuncs.obj
     28 
     29 ##### RULES #####
     30 
     31 VERSION=Mesa V3.4
     32 
     33 ##### TARGETS #####
     34 # Make the library
     35 $(LIBDIR)$(GL_LIB) : $(OBJECTS)
     36   @ library $(LIBDIR)$(GL_LIB) $(OBJECTS)
     37 
     38 clean :
     39 	purge
     40 	delete *.obj;*
     41 
     42 driverfuncs.obj : driverfuncs.c
     43