1 # Mesa 3-D graphics library
4 # Copyright (C) 1999 Brian Paul All Rights Reserved.
6 # Permission is hereby granted, free of charge, to any person obtaining a
7 # copy of this software and associated documentation files (the "Software"),
8 # to deal in the Software without restriction, including without limitation
9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 # and/or sell copies of the Software, and to permit persons to whom the
11 # Software is furnished to do so, subject to the following conditions:
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 # BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
20 # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 # DOS/DJGPP makefile for Mesa
25 # Author: Daniel Borca
26 # Email : dborca@users.sourceforge.net
27 # Web : http://www.geocities.com/dborca
33 # Environment variables:
34 # GLIDE path to Glide3 SDK; used with FX.
35 # default = $(TOP)/glide3
36 # FX=1 build for 3dfx Glide3. Note that this disables
37 # compilation of most DMesa code and requires fxMesa.
38 # As a consequence, you'll need the DJGPP Glide3
39 # library to build any application.
41 # X86=1 optimize for x86 (if possible, use MMX, SSE, 3DNow).
45 # all: build everything
49 # clean: remove object files
50 # realclean: remove all generated files
55 .PHONY : all libgl libglu libglut clean realclean
57 CFLAGS = -Wall -W -pedantic
58 CFLAGS += -O2 -ffast-math
62 ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
63 UNLINK = del $(subst /,\,$(1))
68 all: libgl libglu libglut
71 $(MAKE) -f Makefile.DJ -C src/mesa
73 $(MAKE) -f Makefile.DJ -C src/glu/sgi
75 $(MAKE) -f Makefile.DJ -C src/glut/dos
81 $(MAKE) -f Makefile.DJ clean -C src/mesa
82 $(MAKE) -f Makefile.DJ clean -C src/glu/mesa
83 $(MAKE) -f Makefile.DJ clean -C src/glu/sgi
84 $(MAKE) -f Makefile.DJ clean -C src/glut/dos
87 -$(call UNLINK,lib/*.a)
88 -$(call UNLINK,lib/*.dxe)