xenocara/lib/libGL/Makefile

193 lines
3.6 KiB
Makefile
Raw Normal View History

# $OpenBSD: Makefile,v 1.15 2008/02/02 17:24:30 matthieu Exp $
.include <bsd.own.mk>
.if defined(XENOCARA_BUILD_DRI) && ${XENOCARA_BUILD_DRI:L} == "yes"
SUBDIR=libmesa dri
.endif
2006-11-26 04:21:13 -07:00
all: ${OBJS}
LIB= GL
MESA= ${.CURDIR}/../../dist/Mesa/src/mesa
GL= ${.CURDIR}/../../dist/Mesa/src/GL
GLX= ${.CURDIR}/../../dist/Mesa/src/glx/x11
MESA_INCLUDE= ${.CURDIR}/../../dist/Mesa/include
DRI_DRIVER_INSTALL_DIR= ${X11BASE}/lib/modules/dri
DRI_DRIVER_SEARCH_DIR= $(DRI_DRIVER_INSTALL_DIR)
2006-11-26 04:21:13 -07:00
INCSDIR= ${X11BASE}/include/GL
LDADD= -L${X11BASE}/lib -lXfixes -lXdamage -lXext -lX11 -ldrm
2006-11-26 04:21:13 -07:00
CPP= cpp -notraditional
2007-04-07 09:37:50 -06:00
DEBUG?=
2006-11-26 04:21:13 -07:00
CPPFLAGS+= \
-I. \
-I${MESA_INCLUDE} \
-I${MESA_INCLUDE}/GL/internal \
2006-11-26 04:21:13 -07:00
-I${MESA} \
-I${MESA}/main \
-I${MESA}/math \
-I${MESA}/glapi \
-I${MESA}/tnl \
-I${MESA}/shader \
-I${MESA}/shader/grammar \
-I${MESA}/shader/slang \
-I${GLX} \
-I${X11BASE}/include \
-I${X11BASE}/include/drm \
-DGLX_INDIRECT_RENDERING \
-DPTHREADS \
-DHAVE_ALIAS \
-D_REENTRANT
2006-11-26 04:21:13 -07:00
.if defined(XENOCARA_BUILD_DRI) && ${XENOCARA_BUILD_DRI:L} == "yes"
CPPFLAGS+= -DGLX_DIRECT_RENDERING
.endif
2006-11-26 04:21:13 -07:00
.if ${MACHINE_ARCH} == "i386"
CPPFLAGS += \
-DUSE_X86_ASM \
-DUSE_MMX_ASM \
-DUSE_3DNOW_ASM \
-DUSE_SSE_ASM
.elif ${MACHINE_ARCH} == "amd64"
CPPFLAGS += -D__GLX_ALIGN64 -DUSE_X86_64_ASM
2006-11-26 04:21:13 -07:00
.endif
INCS= \
gl.h \
glext.h \
glx.h \
glxext.h \
osmesa.h
GLAPI_SOURCES= \
dispatch.c \
glapi.c \
glthread.c \
$(ASM_API)
2006-11-26 04:21:13 -07:00
.if ${MACHINE_ARCH} == i386
ASM_API = glapi_x86.S
.endif
.if ${MACHINE_ARCH} == amd64
ASM_API = glapi_x86-64.S
.endif
2006-11-26 04:21:13 -07:00
.if ${MACHINE_ARCH} == sparc
SPARC_API = glapi_sparc.S
.endif
COMMON_DRIVER_SOURCES = \
driverfuncs.c
X11_DRIVER_SOURCES = \
glxapi.c \
fakeglx.c \
xfonts.c \
xm_api.c \
xm_buffer.c \
xm_dd.c \
xm_glide.c \
xm_line.c \
xm_span.c \
xm_tri.c
2006-11-26 04:21:13 -07:00
GLX_SOURCES= \
glcontextmodes.c \
clientattrib.c \
compsize.c \
glxeval.c \
glxcmds.c \
glxext.c \
glxextensions.c \
indirect.c \
indirect_init.c \
indirect_size.c \
indirect_window_pos.c \
indirect_transpose_matrix.c \
indirect_vertex_array.c \
indirect_vertex_program.c \
glxpixel.c \
pixelstore.c \
render2.c \
renderpix.c \
single2.c \
singlepix.c \
vertarr.c \
xfont.c \
glx_pbuffer.c \
glx_query.c \
glx_texture_compression.c \
dri_glx.c \
XF86dri.c
SRCS = $(GLX_SOURCES) \
$(GLAPI_SOURCES)
2006-11-26 04:21:13 -07:00
includes:
cd ${MESA_INCLUDE}/GL; for i in ${INCS}; do \
j="cmp -s $$i ${DESTDIR}${INCSDIR}/GL/$$i || \
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
$$i ${DESTDIR}${INCSDIR}/GL"; \
echo "\tinstalling $$i"; \
eval "$$j"; \
done
2006-11-29 11:03:09 -07:00
NOPROFILE=
2006-11-26 04:21:13 -07:00
obj: _xenocara_obj
2006-11-26 04:21:13 -07:00
.include <bsd.lib.mk>
.include <bsd.xorg.mk>
2006-12-03 12:36:18 -07:00
.if ${MACHINE_ARCH} == powerpc || ${MACHINE_ARCH} == sparc
2006-11-26 04:21:13 -07:00
PICFLAG = -fPIC
.endif
# name conflicts
glxeval.c: ${GLX}/eval.c
ln -s ${GLX}/eval.c $@
glxpixel.c: ${GLX}/pixel.c
ln -s ${GLX}/pixel.c $@
CLEANFILES+= glxeval.c glxpixel.c
.if ${MACHINE_ARCH} == i386
2006-11-26 04:21:13 -07:00
.PATH: ${MESA}/x86
.PATH: ${MESA}/x86/rtasm
.endif
.if ${MACHINE_ARCH} == powerpc
.PATH: ${MESA}/ppc
.endif
.if ${MACHINE_ARCH} == sparc
.PATH: ${MESA}/sparc
.endif
.if ${MACHINE_ARCH} == amd64
.PATH: ${MESA}/x86-64
.endif
2006-11-26 04:21:13 -07:00
.PATH: ${MESA}/glapi
.PATH: ${MESA}/main
.PATH: ${MESA}/math
.PATH: ${MESA}/swrast
.PATH: ${MESA}/swrast_setup
.PATH: ${MESA}/tnl
.PATH: ${MESA}/shader
.PATH: ${MESA}/shader/grammar
.PATH: ${MESA}/shader/slang
.PATH: ${MESA}/shader/slang/MachineIndependent
.PATH: ${MESA}/shader/slang/MachineIndependent/preprocessor
.PATH: ${MESA}/shader/slang/OGLCompilersDLL
.PATH: ${MESA}/shader/slang/OSDependent/Linux
.PATH: ${MESA}/vbo
.PATH: ${MESA}/drivers/common
.PATH: ${MESA}/drivers/x11
2006-11-26 04:21:13 -07:00
.PATH: ${GLX}
.include <bsd.subdir.mk>