Add support for GL_ARB_texture_border_clamp and GL_ARB_texture_mirrored_repeat,
[mesa.git] / Makefile.DJ
1 # Mesa 3-D graphics library
2 # Version: 4.0
3 #
4 # Copyright (C) 1999 Brian Paul All Rights Reserved.
5 #
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:
12 #
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
15 #
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.
22
23 # DOS/DJGPP makefile v1.6 for Mesa
24 #
25 # Copyright (C) 2002 - Daniel Borca
26 # Email : dborca@users.sourceforge.net
27 # Web : http://www.geocities.com/dborca
28
29
30 #
31 # Available options:
32 #
33 # Environment variables:
34 # GLU=[mesa|sgi] specify GLU directory; can be `sgi' (requires GNU/C++)
35 # or `mesa'.
36 # default = mesa
37 # GLIDE path to Glide3 SDK; used with FX.
38 # default = $(TOP)/glide3
39 # FX=1 build for 3dfx Glide3. Note that this disables
40 # compilation of most DMesa code and requires fxMesa.
41 # As a consequence, you'll need the DJGPP Glide3
42 # library to build any application.
43 # default = no
44 # X86=1 optimize for x86 (if possible, use MMX, SSE, 3DNow).
45 # default = no
46 #
47 # Targets:
48 # all: build everything
49 # libgl: build GL
50 # libglu: build GLU
51 # libglut: build GLUT
52 # clean: remove object files
53 # realclean: remove all generated files
54 #
55
56
57
58 .PHONY : all libgl libglu libglut clean realclean
59
60 GLU ?= mesa
61
62 CFLAGS = -Wall -W -pedantic
63 CFLAGS += -O2 -ffast-math
64
65 export CFLAGS
66
67 ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
68 UNLINK = del $(subst /,\,$(1))
69 else
70 UNLINK = $(RM) $(1)
71 endif
72
73 all: libgl libglu libglut
74
75 libgl: lib
76 $(MAKE) -f Makefile.DJ -C src/mesa
77 libglu: lib
78 $(MAKE) -f Makefile.DJ -C src/glu/$(GLU)
79 libglut: lib
80 $(MAKE) -f Makefile.DJ -C src/glut/dos
81
82 lib:
83 mkdir lib
84
85 clean:
86 $(MAKE) -f Makefile.DJ clean -C src/mesa
87 $(MAKE) -f Makefile.DJ clean -C src/glu/mesa
88 $(MAKE) -f Makefile.DJ clean -C src/glu/sgi
89 $(MAKE) -f Makefile.DJ clean -C src/glut/dos
90
91 realclean: clean
92 -$(call UNLINK,lib/*.a)
93 -$(call UNLINK,lib/*.dxe)