mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-03 01:18:06 +02:00
variable (defaults to "make") and use that. Use the MKDEP and MKDEP_OPTIONS more. Our shell isn't bash, so change the instances of ">& /dev/null" to a more compatible "> /dev/null 2>&1".
17 lines
341 B
Text
17 lines
341 B
Text
# Configuration for FreeBSD
|
|
|
|
include $(TOP)/configs/default
|
|
|
|
CONFIG_NAME = FreeBSD
|
|
|
|
# Compiler and flags
|
|
CC = gcc
|
|
CXX = g++
|
|
MAKE = gmake
|
|
|
|
CFLAGS = -O2 -fPIC -pedantic -I/usr/X11R6/include -DUSE_XSHM -DHZ=100
|
|
CXXFLAGS = -O2 -fPIC -pedantic
|
|
GLUT_CFLAGS = -fexceptions
|
|
|
|
APP_LIB_DEPS = -L$(LIB_DIR) -L/usr/X11R6/lib -lXext -lXmu -lXi -lX11 -lm
|
|
|