31b57959f92351c0b3f0f2fb4dfff353b6c04fb4
[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.2 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 # HAVE_X86=1 optimize for i386.
44 # default = no
45 # HAVE_MMX=1 allow MMX specializations, provided your assembler
46 # supports MMX instruction set. However, the true CPU
47 # capabilities are checked at run-time to avoid crashes.
48 # default = no
49 # HAVE_SSE=1 (see HAVE_MMX)
50 # default = no
51 # HAVE_3DNOW=1 (see HAVE_MMX)
52 # default = no
53 #
54 # Targets:
55 # all: build GL
56 # clean: remove object files
57 #
58
59
60
61 .PHONY: all clean
62 .INTERMEDIATE: x86/gen_matypes.exe
63 .SUFFIXES: .rc .res
64
65 TOP = ../..
66 GLIDE ?= $(TOP)/glide3
67 LIBDIR = $(TOP)/lib
68 GL_DLL = opengl32.dll
69 GL_IMP = libopengl32.a
70
71 LDLIBS = -lgdi32
72
73 CC = mingw32-gcc
74 CFLAGS += -DBUILD_GL32 -D_OPENGL32_ -D_MSC_VER
75 CFLAGS += -I$(TOP)/include -I. -Imain -Iglapi
76 ifeq ($(FX),1)
77 CFLAGS += -I$(GLIDE)/include -DFX
78 LDLIBS += -L$(GLIDE)/lib -lglide3x
79 GL_DEF = drivers/glide/fxopengl.def
80 GL_RES = drivers/glide/fx.rc
81 else
82 GL_DEF = drivers/windows/gdi/mesa.def
83 endif
84
85 AR = ar
86 ARFLAGS = rus
87
88 ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
89 UNLINK = del $(subst /,\,$(1))
90 else
91 UNLINK = $(RM) $(1)
92 endif
93
94 include sources
95
96 X86_SOURCES = \
97 x86/x86.c \
98 x86/glapi_x86.S \
99 x86/common_x86.c \
100 x86/common_x86_asm.S \
101 x86/x86_xform2.S \
102 x86/x86_xform3.S \
103 x86/x86_xform4.S \
104 x86/x86_cliptest.S
105
106 MMX_SOURCES = \
107 x86/mmx_blend.S
108
109 SSE_SOURCES = \
110 x86/sse.c \
111 x86/sse_xform2.S \
112 x86/sse_xform3.S \
113 x86/sse_xform4.S \
114 x86/sse_normal.S
115
116 K3D_SOURCES = \
117 x86/3dnow.c \
118 x86/3dnow_xform2.S \
119 x86/3dnow_xform3.S \
120 x86/3dnow_xform4.S \
121 x86/3dnow_normal.S
122
123 CORE_SOURCES = \
124 $(MAIN_SOURCES) \
125 $(GLAPI_SOURCES) \
126 $(MATH_SOURCES) \
127 $(ARRAY_CACHE_SOURCES) \
128 $(TNL_SOURCES) \
129 $(SWRAST_SOURCES) \
130 $(SWRAST_SETUP_SOURCES)
131
132 ifeq ($(HAVE_MMX),1)
133 X86_SOURCES += $(MMX_SOURCES)
134 CFLAGS += -DUSE_MMX_ASM
135 HAVE_X86 = 1
136 endif
137 ifeq ($(HAVE_SSE),1)
138 X86_SOURCES += $(SSE_SOURCES)
139 CFLAGS += -DUSE_SSE_ASM
140 HAVE_X86 = 1
141 endif
142 ifeq ($(HAVE_3DNOW),1)
143 X86_SOURCES += $(K3D_SOURCES)
144 CFLAGS += -DUSE_3DNOW_ASM
145 HAVE_X86 = 1
146 endif
147 ifeq ($(HAVE_X86),1)
148 CFLAGS += -DUSE_X86_ASM
149 else
150 X86_SOURCES =
151 endif
152
153 ifeq ($(FX),1)
154 DRIVER_SOURCES = \
155 drivers/glide/fxapi.c \
156 drivers/glide/fxdd.c \
157 drivers/glide/fxddspan.c \
158 drivers/glide/fxddtex.c \
159 drivers/glide/fxsetup.c \
160 drivers/glide/fxtexman.c \
161 drivers/glide/fxtris.c \
162 drivers/glide/fxvb.c \
163 drivers/glide/fxglidew.c \
164 drivers/glide/fxg.c \
165 drivers/glide/fxwgl.c
166 else
167 DRIVER_SOURCES = \
168 drivers/windows/gdi/wmesa.c \
169 drivers/windows/gdi/wgl.c
170 endif
171
172 SOURCES = $(CORE_SOURCES) $(X86_SOURCES) $(COMMON_DRIVER_SOURCES) $(DRIVER_SOURCES)
173
174 OBJECTS = $(addsuffix .o,$(basename $(SOURCES)))
175
176 X86_OBJECTS = $(addsuffix .o,$(basename $(X86_SOURCES)))
177
178 RESOURCE = $(GL_RES:.rc=.res)
179
180 .c.o:
181 $(CC) -o $@ $(CFLAGS) -c $<
182 .S.o:
183 $(CC) -o $@ $(CFLAGS) -c $<
184 .s.o:
185 $(CC) -o $@ $(CFLAGS) -x assembler-with-cpp -c $<
186 .rc.res:
187 windres -o $@ -Irc -Ocoff $<
188
189 all: $(LIBDIR)/$(GL_DLL) $(LIBDIR)/$(GL_IMP)
190
191 $(LIBDIR)/$(GL_DLL) $(LIBDIR)/$(GL_IMP): $(OBJECTS) $(RESOURCE)
192 dllwrap -o $(LIBDIR)/$(GL_DLL) --output-lib $(LIBDIR)/$(GL_IMP) --target i386-mingw32 --def $(GL_DEF) $^ $(LDLIBS)
193
194 $(X86_OBJECTS): x86/matypes.h
195
196 x86/matypes.h: x86/gen_matypes.exe
197 $(subst /,\,$< > $@)
198
199 x86/gen_matypes.exe: x86/gen_matypes.c
200 $(CC) -o $@ $(CFLAGS) -s $<
201
202 # [dBorca] Hack alert:
203 # glapi_x86.S needs some adjustments
204 # in order to generate correct entrypoints
205 x86/glapi_x86.o: x86/glapi_x86.S
206 $(CC) -o $@ $(CFLAGS) -U__WIN32__ -DSTDCALL_API -c $<
207 #main/dispatch.o: main/dispatch.c
208 # $(CC) -o $@ $(CFLAGS) -UUSE_X86_ASM -c $<
209
210 clean:
211 -$(call UNLINK,array_cache/*.o)
212 -$(call UNLINK,glapi/*.o)
213 -$(call UNLINK,main/*.o)
214 -$(call UNLINK,math/*.o)
215 -$(call UNLINK,swrast/*.o)
216 -$(call UNLINK,swrast_setup/*.o)
217 -$(call UNLINK,tnl/*.o)
218 -$(call UNLINK,x86/*.o)
219 -$(call UNLINK,drivers/common/*.o)
220 -$(call UNLINK,drivers/windows/gdi/*.o)
221 -$(call UNLINK,drivers/glide/*.o)
222 -$(call UNLINK,drivers/glide/*.res)