summaryrefslogtreecommitdiff
path: root/src/mesa/Makefile.BeOS
blob: d1ebaee2207b6a0af79aa96d5c1bda468ec66759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
# Mesa 3-D graphics library
# Version:  5.1
# 
# Copyright (C) 1995-2003  Brian Paul   All Rights Reserved.
# 
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
# BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
# BeOS driver makefile v1.0 for Mesa 5.1.x
#
#  Copyright (C) 2002-2003 - Philippe Houdoin
#  Email : philippe.houdoin@free.fr
#  Web   : http://philippe.houdoin.free.fr/phil/beos/index-en.html
#
# -------------------------------------------------------------------

## BeOS Generic Makefile v2.0 ##

## Fill in this file to specify the project being created, and the referenced
## makefile-engine will do all of the hard work for you.  This handles both
## Intel and PowerPC builds of the BeOS.

## Application Specific Settings ---------------------------------------------

# specify the name of the binary
NAME= libGL.so

# specify the type of binary
#	APP:	Application
#	SHARED:	Shared library or add-on
#	STATIC:	Static library archive
#	DRIVER: Kernel Driver
TYPE= SHARED

#	specify the source files to use
#	full paths or paths relative to the makefile can be included
# 	all files, regardless of directory, will have their object
#	files created in the common object directory.
#	Note that this means this makefile will not work correctly
#	if two source files with the same name (source.c or source.cpp)
#	are included from different directories.  Also note that spaces
#	in folder names do not work well with this makefile.


include sources


BEOS_DRIVER_SOURCES = \
	drivers/beos/GLView.cpp
		
MESA_DEFINES =
ASM_SOURCES =

# To use GAS assembler, uncomment this line instead:
MESA_DEFINES += GNU_ASSEMBLER
# To use NASM assembler, uncomment this line instead:
# MESA_DEFINES += NASM_ASSEMBLER
# To build a DEBUG version of Mesa, uncomment this line instead:
# MESA_DEFINES += DEBUG

# x86-optimized code
MACHINE=$(shell uname -m)
ifeq ($(MACHINE), BePC)
	MESA_DEFINES += USE_X86_ASM USE_SSE_ASM USE_MMX_ASM
	MESA_DEFINES += USE_3DNOW_ASM
	ASM_SOURCES = $(X86_SOURCES)
else
	# No assembly optimization for PowerPC...
	# HAVE_ALTIVEC=1
endif

# FIXME: SI-GLU version support currently broken
# USE_SI_GLU=1
ifdef USE_SI_GLU
	GLU_SOURCES = \
	../si-glu/libutil/error.c		\
	../si-glu/libutil/glue.c		\
	../si-glu/libutil/mipmap.c	\
	../si-glu/libutil/project.c	\
	../si-glu/libutil/quad.c		\
	../si-glu/libutil/registry.c	\
	../si-glu/libtess/dict.c		\
	../si-glu/libtess/geom.c		\
	../si-glu/libtess/memalloc.c	\
	../si-glu/libtess/mesh.c		\
	../si-glu/libtess/normal.c	\
	../si-glu/libtess/priorityq.c	\
	../si-glu/libtess/render.c	\
	../si-glu/libtess/sweep.c		\
	../si-glu/libtess/tess.c		\
	../si-glu/libtess/tessmono.c	\
	../si-glu/libnurbs/interface/bezierEval.cc		\
	../si-glu/libnurbs/interface/bezierPatch.cc		\
	../si-glu/libnurbs/interface/bezierPatchMesh.cc		\
	../si-glu/libnurbs/interface/glcurveval.cc		\
	../si-glu/libnurbs/interface/glinterface.cc		\
	../si-glu/libnurbs/interface/glrenderer.cc		\
	../si-glu/libnurbs/interface/glsurfeval.cc		\
	../si-glu/libnurbs/interface/incurveeval.cc		\
	../si-glu/libnurbs/interface/insurfeval.cc		\
	../si-glu/libnurbs/internals/arc.cc			\
	../si-glu/libnurbs/internals/arcsorter.cc			\
	../si-glu/libnurbs/internals/arctess.cc			\
	../si-glu/libnurbs/internals/backend.cc			\
	../si-glu/libnurbs/internals/basiccrveval.cc		\
	../si-glu/libnurbs/internals/basicsurfeval.cc		\
	../si-glu/libnurbs/internals/bin.cc			\
	../si-glu/libnurbs/internals/bufpool.cc			\
	../si-glu/libnurbs/internals/cachingeval.cc		\
	../si-glu/libnurbs/internals/ccw.cc			\
	../si-glu/libnurbs/internals/coveandtiler.cc		\
	../si-glu/libnurbs/internals/curve.cc			\
	../si-glu/libnurbs/internals/curvelist.cc			\
	../si-glu/libnurbs/internals/curvesub.cc			\
	../si-glu/libnurbs/internals/dataTransform.cc		\
	../si-glu/libnurbs/internals/displaylist.cc		\
	../si-glu/libnurbs/internals/flist.cc			\
	../si-glu/libnurbs/internals/flistsorter.cc		\
	../si-glu/libnurbs/internals/hull.cc			\
	../si-glu/libnurbs/internals/intersect.cc			\
	../si-glu/libnurbs/internals/knotvector.cc		\
	../si-glu/libnurbs/internals/mapdesc.cc			\
	../si-glu/libnurbs/internals/mapdescv.cc			\
	../si-glu/libnurbs/internals/maplist.cc			\
	../si-glu/libnurbs/internals/mesher.cc			\
	../si-glu/libnurbs/internals/monoTriangulationBackend.cc	\
	../si-glu/libnurbs/internals/monotonizer.cc		\
	../si-glu/libnurbs/internals/mycode.cc			\
	../si-glu/libnurbs/internals/nurbsinterfac.cc		\
	../si-glu/libnurbs/internals/nurbstess.cc			\
	../si-glu/libnurbs/internals/patch.cc			\
	../si-glu/libnurbs/internals/patchlist.cc			\
	../si-glu/libnurbs/internals/quilt.cc			\
	../si-glu/libnurbs/internals/reader.cc			\
	../si-glu/libnurbs/internals/renderhints.cc		\
	../si-glu/libnurbs/internals/slicer.cc			\
	../si-glu/libnurbs/internals/sorter.cc			\
	../si-glu/libnurbs/internals/splitarcs.cc			\
	../si-glu/libnurbs/internals/subdivider.cc		\
	../si-glu/libnurbs/internals/tobezier.cc			\
	../si-glu/libnurbs/internals/trimline.cc			\
	../si-glu/libnurbs/internals/trimregion.cc		\
	../si-glu/libnurbs/internals/trimvertpool.cc		\
	../si-glu/libnurbs/internals/uarray.cc			\
	../si-glu/libnurbs/internals/varray.cc			\
	../si-glu/libnurbs/nurbtess/directedLine.cc		\
	../si-glu/libnurbs/nurbtess/gridWrap.cc			\
	../si-glu/libnurbs/nurbtess/monoChain.cc			\
	../si-glu/libnurbs/nurbtess/monoPolyPart.cc		\
	../si-glu/libnurbs/nurbtess/monoTriangulation.cc		\
	../si-glu/libnurbs/nurbtess/partitionX.cc			\
	../si-glu/libnurbs/nurbtess/partitionY.cc			\
	../si-glu/libnurbs/nurbtess/polyDBG.cc			\
	../si-glu/libnurbs/nurbtess/polyUtil.cc			\
	../si-glu/libnurbs/nurbtess/primitiveStream.cc		\
	../si-glu/libnurbs/nurbtess/quicksort.cc			\
	../si-glu/libnurbs/nurbtess/rectBlock.cc			\
	../si-glu/libnurbs/nurbtess/sampleComp.cc			\
	../si-glu/libnurbs/nurbtess/sampleCompBot.cc		\
	../si-glu/libnurbs/nurbtess/sampleCompRight.cc		\
	../si-glu/libnurbs/nurbtess/sampleCompTop.cc		\
	../si-glu/libnurbs/nurbtess/sampleMonoPoly.cc		\
	../si-glu/libnurbs/nurbtess/sampledLine.cc		\
	../si-glu/libnurbs/nurbtess/searchTree.cc
else
	GLU_SOURCES = \
	../glu/mesa/glu.c \
	../glu/mesa/mipmap.c \
	../glu/mesa/project.c \
	../glu/mesa/quadric.c \
	../glu/mesa/tess.c \
	../glu/mesa/tesselat.c \
	../glu/mesa/polytest.c \
	../glu/mesa/nurbs.c \
	../glu/mesa/nurbscrv.c \
	../glu/mesa/nurbssrf.c \
	../glu/mesa/nurbsutl.c
endif

MESA_SOURCES =	$(CORE_SOURCES) $(ASM_SOURCES)

SRCS =  $(MESA_SOURCES) $(GLU_SOURCES) $(BEOS_DRIVER_SOURCES) 
		
#	specify the resource files to use
#	full path or a relative path to the resource file can be used.
RSRCS = 

#	specify additional libraries to link against
#	there are two acceptable forms of library specifications
#	-	if your library follows the naming pattern of:
#		libXXX.so or libXXX.a you can simply specify XXX
#		library: libbe.so entry: be
#		
#	- 	if your library does not follow the standard library
#		naming scheme you need to specify the path to the library
#		and it's name
#		library: my_lib.a entry: my_lib.a or path/my_lib.a
LIBS = be
		
#	specify additional paths to directories following the standard
#	libXXX.so or libXXX.a naming scheme.  You can specify full paths
#	or paths relative to the makefile.  The paths included may not
#	be recursive, so include all of the paths where libraries can
#	be found.  Directories where source files are found are
#	automatically included.
LIBPATHS =

#	additional paths to look for system headers
#	thes use the form: #include <header>
#	source file directories are NOT auto-included here
SYSTEM_INCLUDE_PATHS = ../../include 

ifdef USE_SI_GLU
	SYSTEM_INCLUDE_PATHS += ../glu/sgi/include
endif

#	additional paths to look for local headers
#	thes use the form: #include "header"
#	source file directories are automatically included
LOCAL_INCLUDE_PATHS = \
	. \
	./main \
	./glapi \
	./math \
	./transform \
	./swrast \
	./swrast_setup \
	./tnl \
	./tnl_dd

#	specify the level of optimization that you desire
#	NONE, SOME, FULL
OPTIMIZE = FULL

#	specify any preprocessor symbols to be defined.  The symbols
#	will be set to a value of 1.  For example specify DEBUG if you want
#	DEBUG=1 to be set when compiling.
DEFINES = $(MESA_DEFINES)

#	specify special warning levels
#	if unspecified default warnings will be used
#	NONE = suppress all warnings
#	ALL = enable all warnings
WARNINGS = ALL

#	specify whether image symbols will be created
#	so that stack crawls in the debugger are meaningful
#	if TRUE symbols will be created
SYMBOLS = TRUE 

#	specify debug settings
#	if TRUE will allow application to be run from
#	a source-level debugger
# DEBUGGER = TRUE
DEBUGGER = FALSE

#	specify additional compiler flags for all files
COMPILER_FLAGS = 

#	specify additional linker flags
LINKER_FLAGS =



## include the makefile-engine
include /boot/develop/etc/makefile-engine



# x86/matypes.h include file is *generated*!
# Rules to (re)generate it as needed:

x86/common_x86_asm.S : x86/matypes.h

x86/matypes.h : x86/gen_matypes.c
	@echo "(Re-)Generating $@ ..."
	$(CC) $< $(INCLUDES) $(CFLAGS)  -o x86/gen_matypes
	x86/gen_matypes > $@
	rm -f x86/gen_matypes

## Add NASM support for assembly code compilation...
# $(OBJ_DIR)/%.o : %.nasm
#	nasm -f elf $(MESA_DEFINES) -o $@ $<

$(OBJ_DIR)/%.o : %.S
	gcc -c $< $(INCLUDES) $(CFLAGS) -o $@
#	gcc $(INCLUDES) $(CFLAGS) -E $< | grep -v '^$$' > $(addsuffix .nasm, $(basename $<))
#	nasm -f elf $(MESA_DEFINES) -o $@ $(addsuffix .nasm, $(basename $<))