--- /dev/null
+# Makefile for GLU for GCC-2.95.2/Mingw32 contributed by\r
+# Paul Garceau <pgarceau@teleport.com>\r
+\r
+# Mesa 3-D graphics library\r
+# Version: 3.3\r
+# Copyright (C) 1995-1999 Brian Paul\r
+#\r
+# This library is free software; you can redistribute it and/or\r
+# modify it under the terms of the GNU Library General Public\r
+# License as published by the Free Software Foundation; either\r
+# version 2 of the License, or (at your option) any later version.\r
+#\r
+# This library is distributed in the hope that it will be useful,\r
+# but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r
+# Library General Public License for more details.\r
+#\r
+# You should have received a copy of the GNU Library General Public\r
+# License along with this library; if not, write to the Free\r
+# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\r
+\r
+\r
+MESA_MAJOR=3\r
+MESA_MINOR=3\r
+MESA_TINY=0\r
+VERSION=$(MESA_MAJOR).$(MESA_MINOR)\r
+\r
+CFLAGS = -I. -DWIN32 -D__WIN32__ -D_WINDOWS \\r
+ -O2 -funroll-loops \\r
+ -fexpensive-optimizations -fomit-frame-pointer -ffast-math \\r
+ -malign-loops=2 -malign-jumps=2 -malign-functions=2 \\r
+ -mwindows\r
+CC = gcc\r
+MAKELIB = ar ru\r
+GLU_LIB = libGLU.a\r
+\r
+\r
+##### MACROS #####\r
+\r
+VPATH = RCS\r
+\r
+INCDIR = ../include\r
+LIBDIR = ../lib\r
+\r
+SOURCES = glu.c mipmap.c nurbs.c nurbscrv.c nurbssrf.c nurbsutl.c \\r
+ project.c quadric.c tess.c tess_fist.c tess_hash.c tess_heap.c \\r
+ tess_winding.c tess_clip.c\r
+\r
+OBJECTS = $(SOURCES:.c=.o)\r
+\r
+\r
+\r
+##### RULES #####\r
+\r
+.c.o:\r
+ $(CC) -c -I$(INCDIR) $(CFLAGS) $<\r
+\r
+\r
+\r
+##### TARGETS #####\r
+\r
+# Make the library:\r
+$(LIBDIR)/$(GLU_LIB): $(OBJECTS)\r
+ $(MAKELIB) $(GLU_LIB) $(MAJOR) $(MINOR) $(TINY) $(OBJECTS)
\ No newline at end of file