From 04120f6cce0aa9e3604a64c740c25b99ca3999dc Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 14 Sep 2001 22:19:18 +0000 Subject: Win32 updates (Karl Schultz) --- progs/demos/Makefile.win | 86 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 progs/demos/Makefile.win (limited to 'progs/demos') diff --git a/progs/demos/Makefile.win b/progs/demos/Makefile.win new file mode 100644 index 0000000000..9cb089e621 --- /dev/null +++ b/progs/demos/Makefile.win @@ -0,0 +1,86 @@ +# $Id: Makefile.win,v 1.1 2001/09/14 22:19:18 brianp Exp $ + +# Mesa 3-D graphics library +# Version: 3.5 +# Copyright (C) 1995-2001 Brian Paul + +# Makefile for GLUT-based demo programs for Windows + +!include + +##### MACROS ##### + +TOP = .. +INCDIR = ..\include +LIBDIR = ..\lib + +PROGS = anisotropic \ + bounce \ + clearspd \ + cubemap \ + drawpix \ + fire \ + gamma \ + gears \ + geartrain \ + glinfo \ + gloss \ + gltestperf \ + glutfx \ + isosurf \ + ipers \ + lodbias \ + morph3d \ + multiarb \ + occlude \ + osdemo \ + paltex \ + pixeltex \ + pointblast \ + ray \ + readpix \ + reflect \ + renormal \ + shadowtex \ + spectex \ + stex3d \ + teapot \ + terrain \ + tessdemo \ + texcyl \ + texdown \ + texenv \ + texobj \ + trispd \ + tunnel \ + tunnel2 \ + winpos + +SRCS = +OSMESASRCS = osdemo.c + +!include "../mesawin32.mak" + +##### TARGETS ##### + +clean:: + +realclean:: + +targets: readtex.c readtex.h $(PROGS) + +# remove comments when we get non-osmesa pgm working +#$(EXES) : $*.obj $(DEPLIBS) +# echo $@ +# $(link) -out:$@ $** $(LIBS) + +$(OSMESAEXES) : $*.obj $(DEPLIBS) + echo $@ + $(link) -out:$@ $** $(LIBS) $(EXTRALIBS) + +readtex.c: + @copy ../util/readtex.c . + +readtex.h: + @copy ../util/readtex.c . + -- cgit v1.2.3