fix max buffer size test (Kyle Bateman, bug 912828)
[mesa.git] / src / mesa / Makefile.mgw
1 # Mesa 3-D graphics library
2 # Version: 5.1
3 #
4 # Copyright (C) 1999-2003 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 # MinGW core makefile v1.3 for Mesa
24 #
25 # Copyright (C) 2002 - Borca Daniel
26 # Email : dborca@users.sourceforge.net
27 # Web : http://www.geocities.com/dborca
28
29
30 #
31 # Available options:
32 #
33 # Environment variables:
34 # CFLAGS
35 #
36 # GLIDE path to Glide3 SDK; used with FX.
37 # default = $(TOP)/glide3
38 # FX=1 build for 3dfx Glide3. Note that this disables
39 # compilation of most WMesa code and requires fxMesa.
40 # As a consequence, you'll need the Win32 Glide3
41 # library to build any application.
42 # default = no
43 # X86=1 optimize for x86 (if possible, use MMX, SSE, 3DNow).
44 # default = no
45 #
46 # Targets:
47 # all: build GL
48 # clean: remove object files
49 #
50
51
52
53 .PHONY: all clean
54 .INTERMEDIATE: x86/gen_matypes.exe
55 .SUFFIXES: .rc .res
56
57 TOP = ../..
58 GLIDE ?= $(TOP)/glide3
59 LIBDIR = $(TOP)/lib
60 GL_DLL = opengl32.dll
61 GL_IMP = libopengl32.a
62
63 LDLIBS = -lgdi32
64
65 CC = mingw32-gcc
66 CFLAGS += -DBUILD_GL32 -D_OPENGL32_ -D_MSC_VER
67 CFLAGS += $(INCLUDE_DIRS)
68 ifeq ($(FX),1)
69 CFLAGS += -I$(GLIDE)/include -DFX
70 LDLIBS += -L$(GLIDE)/lib -lglide3x
71 GL_DEF = drivers/glide/fxopengl.def
72 GL_RES = drivers/glide/fx.rc
73 else
74 GL_DEF = drivers/windows/gdi/mesa.def
75 endif
76
77 AR = ar
78 ARFLAGS = rus
79
80 ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
81 UNLINK = del $(subst /,\,$(1))
82 else
83 UNLINK = $(RM) $(1)
84 endif
85
86 include sources
87
88 ifeq ($(X86),1)
89 CFLAGS += -DUSE_X86_ASM
90 CFLAGS += -DUSE_MMX_ASM
91 CFLAGS += -DUSE_SSE_ASM
92 CFLAGS += -DUSE_3DNOW_ASM
93 else
94 X86_SOURCES =
95 endif
96
97 ifeq ($(FX),1)
98 DRIVER_SOURCES = \
99 $(GLIDE_DRIVER_SOURCES) \
100 drivers/glide/fxwgl.c
101 else
102 DRIVER_SOURCES = \
103 drivers/windows/gdi/wmesa.c \
104 drivers/windows/gdi/wgl.c
105 endif
106
107 SOURCES = $(CORE_SOURCES) $(X86_SOURCES) $(COMMON_DRIVER_SOURCES) $(DRIVER_SOURCES)
108
109 OBJECTS = $(addsuffix .o,$(basename $(SOURCES)))
110
111 X86_OBJECTS = $(addsuffix .o,$(basename $(X86_SOURCES)))
112
113 RESOURCE = $(GL_RES:.rc=.res)
114
115 .c.o:
116 $(CC) -o $@ $(CFLAGS) -c $<
117 .S.o:
118 $(CC) -o $@ $(CFLAGS) -c $<
119 .s.o:
120 $(CC) -o $@ $(CFLAGS) -x assembler-with-cpp -c $<
121 .rc.res:
122 windres -o $@ -Irc -Ocoff $<
123
124 all: $(LIBDIR)/$(GL_DLL) $(LIBDIR)/$(GL_IMP)
125
126 $(LIBDIR)/$(GL_DLL) $(LIBDIR)/$(GL_IMP): $(OBJECTS) $(RESOURCE)
127 dllwrap -o $(LIBDIR)/$(GL_DLL) --output-lib $(LIBDIR)/$(GL_IMP) --target i386-mingw32 --def $(GL_DEF) $^ $(LDLIBS)
128
129 $(X86_OBJECTS): x86/matypes.h
130
131 x86/matypes.h: x86/gen_matypes.exe
132 $(subst /,\,$< > $@)
133
134 x86/gen_matypes.exe: x86/gen_matypes.c
135 $(CC) -o $@ $(CFLAGS) -s $<
136
137 # [dBorca] Hack alert:
138 # glapi_x86.S needs some adjustments
139 # in order to generate correct entrypoints
140 x86/glapi_x86.o: x86/glapi_x86.S
141 $(CC) -o $@ $(CFLAGS) -U__WIN32__ -DSTDCALL_API -c $<
142 #main/dispatch.o: main/dispatch.c
143 # $(CC) -o $@ $(CFLAGS) -UUSE_X86_ASM -c $<
144
145 clean:
146 -$(call UNLINK,array_cache/*.o)
147 -$(call UNLINK,glapi/*.o)
148 -$(call UNLINK,main/*.o)
149 -$(call UNLINK,math/*.o)
150 -$(call UNLINK,swrast/*.o)
151 -$(call UNLINK,swrast_setup/*.o)
152 -$(call UNLINK,tnl/*.o)
153 -$(call UNLINK,x86/*.o)
154 -$(call UNLINK,drivers/common/*.o)
155 -$(call UNLINK,drivers/windows/gdi/*.o)
156 -$(call UNLINK,drivers/glide/*.o)
157 -$(call UNLINK,drivers/glide/*.res)