mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 15:10:10 +01:00
Unused since removal of demos from the repository? Signed-off-by: Matt Turner <mattst88@gmail.com> Signed-off-by: Brian Paul <brianp@vmware.com>
20 lines
484 B
Text
20 lines
484 B
Text
# Configuration for OpenBSD
|
|
|
|
include $(TOP)/configs/default
|
|
|
|
CONFIG_NAME = openbsd
|
|
|
|
# Compiler and flags
|
|
CC = gcc
|
|
CXX = g++
|
|
CFLAGS = -O2 -fPIC -I/usr/X11R6/include -DUSE_XSHM -DHZ=100
|
|
CXXFLAGS = -O2 -fPIC -I/usr/X11R6/include -DHZ=100
|
|
|
|
# Work around aliasing bugs - developers should comment this out
|
|
CFLAGS += -fno-strict-aliasing
|
|
CXXFLAGS += -fno-strict-aliasing
|
|
|
|
GL_LIB_DEPS = -L/usr/X11R6/lib -lX11 -lXext -lm
|
|
OSMESA_LIB_DEPS = -lm
|
|
GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB)
|
|
|