summaryrefslogtreecommitdiff
path: root/progs/demos/Makefile.win
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-09-14 22:19:18 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-09-14 22:19:18 +0000
commit04120f6cce0aa9e3604a64c740c25b99ca3999dc (patch)
tree18b48cfc6380ecd6b1137c4d2a12144d5a5f32b9 /progs/demos/Makefile.win
parent7c276329e815c84ea2403bb08c44ff60179c0cd6 (diff)
Win32 updates (Karl Schultz)
Diffstat (limited to 'progs/demos/Makefile.win')
-rw-r--r--progs/demos/Makefile.win86
1 files changed, 86 insertions, 0 deletions
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 <win32.mak>
+
+##### 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 .
+