Demos (master): Remove Makefile.win files.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Wed May 11 08:54:30 UTC 2011


Module: Demos
Branch: master
Commit: 2d1c0def87b2c7745b295ec467053a010cf82e8e
URL:    http://cgit.freedesktop.org/mesa/demos/commit/?id=2d1c0def87b2c7745b295ec467053a010cf82e8e

Author: José Fonseca <jose.r.fonseca at gmail.com>
Date:   Wed May 11 08:58:42 2011 +0100

Remove Makefile.win files.

Dead & deprecated by cmake.

---

 src/demos/Makefile.win   |  131 ----------------------------------------------
 src/redbook/Makefile.win |   78 ---------------------------
 src/samples/Makefile.win |   41 --------------
 src/tests/Makefile.win   |   43 ---------------
 4 files changed, 0 insertions(+), 293 deletions(-)

diff --git a/src/demos/Makefile.win b/src/demos/Makefile.win
deleted file mode 100644
index 0d0b19b..0000000
--- a/src/demos/Makefile.win
+++ /dev/null
@@ -1,131 +0,0 @@
-
-# Mesa 3-D graphics library
-# Version:  6.5
-# Copyright (C) 1995-2006  Brian Paul
-
-# Makefile for GLUT-based demo programs for Windows
-
-# Build the Mesa and GLUT libraries by using the Visual Studio
-# Workspaces in this distribution before running this Makefile.
-
-# Invocation:  nmake -f Makefile.win
-
-NODEBUG=1
-!include <win32.mak>
-
-##### MACROS #####
-
-TOP    = ..\..
-INCDIR = ..\..\include
-LIBDIR = ..\..\lib
-LIBS   = GLUT32.LIB OPENGL32.LIB
-
-all:	OPENGL32.DLL GLU32.DLL GLUT32.DLL \
-	readtex.h readtex.c showbuffer.h showbuffer.c \
-	extfuncs.h trackball.h trackball.c \
-	arbfplight.exe arbfslight.exe arbocclude.exe bounce.exe \
-	clearspd.exe cubemap.exe drawpix.exe engine.exe \
-	fire.exe fogcoord.exe \
-	fplight.exe fslight.exe gamma.exe gearbox.exe \
-	gears.exe geartrain.exe gloss.exe \
-	glinfo.exe glslnoise.exe \
-	gltestperf.exe glutfx.exe ipers.exe isosurf.exe lodbias.exe \
-	morph3d.exe multiarb.exe occlude.exe paltex.exe pointblast.exe \
-	ray.exe readpix.exe reflect.exe renormal.exe \
-	shadowtex.exe singlebuffer.exe spectex.exe spriteblast.exe \
-	stex3d.exe teapot.exe terrain.exe tessdemo.exe texcyl.exe \
-	texdown.exe texenv.exe texobj.exe trispd.exe tunnel.exe tunnel2.exe \
-	winpos.exe
-
-arbfplight.exe: arbfplight.obj
-arbfslight.exe: arbfslight.obj
-arbocclude.exe: arbocclude.obj
-bounce.exe: bounce.obj
-clearspd.exe: clearspd.obj
-cubemap.exe: cubemap.obj readtex.obj
-drawpix.exe: drawpix.obj readtex.obj
-engine.exe: engine.obj readtex.obj trackball.obj
-fire.exe: fire.obj readtex.obj
-fogcoord.exe: fogcoord.obj readtex.obj
-fplight.exe: fplight.obj
-fslight.exe: fslight.obj
-gamma.exe: gamma.obj
-gearbox.exe: gearbox.obj
-gears.exe: gears.obj
-geartrain.exe: geartrain.obj
-gloss.exe: gloss.obj readtex.obj trackball.obj
-glinfo.exe: glinfo.obj
-glslnoise.exe: glslnoise.obj
-gltestperf.exe: gltestperf.obj
-glutfx.exe: glutfx.obj
-ipers.exe: ipers.obj readtex.obj
-isosurf.exe: isosurf.obj readtex.obj
-lodbias.exe: lodbias.obj readtex.obj
-morph3d.exe: morph3d.obj
-multiarb.exe: multiarb.obj readtex.obj
-occlude.exe: occlude.obj
-paltex.exe: paltex.obj
-pointblast.exe: pointblast.obj
-ray.exe: ray.obj
-readpix.exe: readpix.obj readtex.obj
-reflect.exe: reflect.obj readtex.obj showbuffer.obj
-renormal.exe: renormal.obj
-shadowtex.exe: shadowtex.obj showbuffer.obj
-singlebuffer.exe: singlebuffer.obj
-spectex.exe: spectex.obj
-spriteblast.exe: spriteblast.obj
-stex3d.exe: stex3d.obj
-teapot.exe: teapot.obj readtex.obj
-terrain.exe: terrain.obj
-tessdemo.exe: tessdemo.obj
-texcyl.exe: texcyl.obj readtex.obj
-texdown.exe: texdown.obj
-texenv.exe: texenv.obj
-texobj.exe: texobj.obj
-trispd.exe: trispd.obj
-tunnel.exe: tunnel.obj readtex.obj
-tunnel2.exe: tunnel2.obj readtex.obj
-winpos.exe: winpos.obj readtex.obj
-
-
-OPENGL32.DLL: $(LIBDIR)\OPENGL32.DLL
-	copy $? .
-
-GLU32.DLL: $(LIBDIR)\GLU32.DLL
-	copy $? .
-
-GLUT32.DLL: $(LIBDIR)\GLUT32.DLL
-	copy $? .
-
-readtex.c: $(TOP)\progs\util\readtex.c
-	copy $** .
-
-readtex.h: $(TOP)\progs\util\readtex.h
-	copy $** .
-
-showbuffer.c: $(TOP)\progs\util\showbuffer.c
-	copy $** .
-
-showbuffer.h: $(TOP)\progs\util\showbuffer.h
-	copy $** .
-
-trackball.c: $(TOP)\progs\util\trackball.c
-	copy $** .
-
-trackball.h: $(TOP)\progs\util\trackball.h
-	copy $** .
-
-extfuncs.h: $(TOP)\progs\util\extfuncs.h
-	copy $** .
-
-.obj.exe:
-	$(link) $(ldebug) -out:$@ $** /LIBPATH:$(LIBDIR) $(LIBS)
-
-.c.obj:
-	$(cc) $(cdebug) $(cflags) $(cvars) -D_USE_MATH_DEFINES /I$(INCDIR) $*.c
-
-clean::
-	del *.obj *.exe readtex.* showbuffer.* trackball.*
-
-clobber::
-
diff --git a/src/redbook/Makefile.win b/src/redbook/Makefile.win
deleted file mode 100644
index 7e57b8e..0000000
--- a/src/redbook/Makefile.win
+++ /dev/null
@@ -1,78 +0,0 @@
-# Makefile for Win32
-
-TOP    = ..
-INCDIR = ..\include
-LIBDIR = ..\lib
-
-!include <win32.mak>
-
-SRCS= \
-   aaindex.c \
-   aapoly.c \
-   aargb.c \
-   accanti.c \
-   accpersp.c \
-   alpha.c    \
-   alpha3D.c  \
-   anti.c     \
-   bezcurve.c  \
-   bezmesh.c   \
-   checker.c   \
-   clip.c      \
-   colormat.c  \
-   cube.c      \
-   depthcue.c  \
-   dof.c       \
-   double.c    \
-   drawf.c     \
-   feedback.c  \
-   fog.c       \
-   fogindex.c  \
-   font.c      \
-   hello.c     \
-   image.c     \
-   light.c     \
-   lines.c     \
-   list.c      \
-   material.c  \
-   mipmap.c    \
-   model.c     \
-   movelight.c \
-   nurbs.c     \
-   pickdepth.c \
-   picksquare.c \
-   plane.c     \
-   planet.c    \
-   polyoff.c  \
-   polys.c     \
-   quadric.c   \
-   robot.c     \
-   sccolorlight.c \
-   scene.c     \
-   scenebamb.c \
-   sceneflat.c \
-   select.c    \
-   smooth.c    \
-   stencil.c   \
-   stroke.c    \
-   surface.c   \
-   teaambient.c \
-   teapots.c   \
-   tess.c      \
-   tesswind.c  \
-   texbind.c   \
-   texgen.c    \
-   texprox.c   \
-   texsub.c    \
-   texturesurf.c \
-   torus.c     \
-   trim.c     \
-   unproject.c \
-   varray.c   \
-   wrap.c
-
-!include "$(TOP)/mesawin32.mak"
-
-$(EXES) : $*.obj
-	@echo $@
-	$(link) -out:$@ $* /LIBPATH:$(LIBDIR) $(LIBS)
\ No newline at end of file
diff --git a/src/samples/Makefile.win b/src/samples/Makefile.win
deleted file mode 100644
index e74568f..0000000
--- a/src/samples/Makefile.win
+++ /dev/null
@@ -1,41 +0,0 @@
-
-# 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 = accum bitmap1 bitmap2 blendeq blendxor copy cursor depth eval fog \
-	font line logo nurb oglinfo olympic overlay point prim quad select \
-	shape sphere star stencil stretch texture tri wave
-
-SRCS = \
-    accum.c \
-    bitmap1.c \
-    bitmap2.c \
-    blendeq.c \
-    blendxor.c \
-    copy.c \
-    cursor.c depth.c eval.c fog.c \
-	font.c line.c logo.c nurb.c olympic.c overlay.c point.c prim.c quad.c select.c \
-	shape.c sphere.c star.c stencil.c stretch.c texture.c tri.c wave.c
-
-!include "../mesawin32.mak"
-
-##### TARGETS #####
-
-clean::
-
-clobber::
-
-$(EXES) : $*.obj
-	@echo $@
-	$(link) -out:$@ $* /LIBPATH:$(LIBDIR) $(LIBS)
diff --git a/src/tests/Makefile.win b/src/tests/Makefile.win
deleted file mode 100644
index d42e3cb..0000000
--- a/src/tests/Makefile.win
+++ /dev/null
@@ -1,43 +0,0 @@
-
-# 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
-
-SRCS = cva.c \
-	dinoshade.c \
-	fogcoord.c \
-	manytex.c \
-	multipal.c \
-	projtex.c \
-	seccolor.c \
-#	sharedtex.c \
-	texline.c \
-	texwrap.c \
-	vptest1.c \
-	vptest2.c \
-	vptest3.c \
-	vptorus.c \
-	vpwarpmesh.c
-	
-!include "../mesawin32.mak"
-
-##### TARGETS #####
-
-clean::
-
-clobber::
-	@del readtex.c readtex.h
-
-$(EXES) :$*.obj
-	@echo $@
-	$(link) -out:$@ $* /LIBPATH:$(LIBDIR) $(LIBS)




More information about the mesa-commit mailing list