mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-26 18:58:13 +02:00
libGLw is an old OpenGL widget library with optional Motif support. It almost never changes and very few people actually still care about it, so we've decided to ship it separately. The new home for libGLw is: git://git.freedesktop.org/mesa/glw/ Reviewed-by: Brian Paul <brianp@vmware.com>
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
# -*-makefile-*-
|
|
# Configuration for freebsd-dri: FreeBSD DRI hardware drivers
|
|
|
|
include $(TOP)/configs/freebsd
|
|
|
|
CONFIG_NAME = freebsd-dri
|
|
|
|
# Compiler and flags
|
|
CC = gcc
|
|
CXX = g++
|
|
WARN_FLAGS = -Wall
|
|
OPT_FLAGS = -O -g
|
|
|
|
EXPAT_INCLUDES = -I/usr/local/include
|
|
X11_INCLUDES = -I/usr/local/include
|
|
DEFINES = -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER \
|
|
-DGLX_DIRECT_RENDERING -DGLX_INDIRECT_RENDERING \
|
|
-DHAVE_ALIAS
|
|
|
|
CFLAGS = $(WARN_FLAGS) $(OPT_FLAGS) $(PIC_FLAGS) -Wmissing-prototypes -std=c99 -Wundef -ffast-math \
|
|
$(ASM_FLAGS) $(X11_INCLUDES) $(DEFINES)
|
|
|
|
CXXFLAGS = $(WARN_FLAGS) $(OPT_FLAGS) $(PIC_FLAGS) $(DEFINES) -Wall -ansi -pedantic $(ASM_FLAGS) $(X11_INCLUDES)
|
|
|
|
# Work around aliasing bugs - developers should comment this out
|
|
CFLAGS += -fno-strict-aliasing
|
|
CXXFLAGS += -fno-strict-aliasing
|
|
|
|
ASM_SOURCES =
|
|
MESA_ASM_SOURCES =
|
|
|
|
# Library/program dependencies
|
|
MESA_MODULES = $(TOP)/src/mesa/libmesa.a
|
|
|
|
LIBDRM_CFLAGS = `pkg-config --cflags libdrm`
|
|
LIBDRM_LIB = `pkg-config --libs libdrm`
|
|
DRI_LIB_DEPS = $(MESA_MODULES) -L/usr/local/lib -lm -pthread -lexpat $(LIBDRM_LIB)
|
|
GL_LIB_DEPS = -L/usr/local/lib -lX11 -lXext -lXxf86vm -lXdamage -lXfixes \
|
|
-lm -pthread $(LIBDRM_LIB)
|
|
|
|
GLW_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -L/usr/local/lib -lGL -lXt -lX11
|
|
|
|
|
|
# Directories
|
|
SRC_DIRS = glx gallium mesa glu
|
|
DRIVER_DIRS = dri
|
|
|
|
DRM_SOURCE_PATH=$(TOP)/../drm
|
|
|
|
DRI_DIRS = i810 i915 i965 mach64 mga r128 r200 r300 radeon tdfx \
|
|
unichrome savage sis
|
|
|