1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- # $Id: Makefile.win,v 1.2 2001/09/18 16:39:38 kschultz 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 .
|