mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 10:50:16 +01:00
Update the Makefiles and includes for the new paths. Note that there hasn't been no separation of the Makefiles yet, and make is jumping all over the place. That will be taken care shortly. But for now, make should work. It was tested with linux and linux-dri. Linux-cell and linux-llvm might require some minor tweaks.
29 lines
1.1 KiB
Text
29 lines
1.1 KiB
Text
# Configuration for Darwin / MacOS X, making dynamic libs
|
|
|
|
include $(TOP)/configs/default
|
|
|
|
CONFIG_NAME = darwin
|
|
|
|
# Compiler and flags
|
|
CC = cc
|
|
CXX = cc
|
|
CFLAGS = -I/usr/X11R6/include -O3 -fPIC -fno-common -ffast-math -funroll-loops -fexpensive-optimizations -no-cpp-precomp -dynamic -Ddarwin
|
|
CXXFLAGS = -I/usr/X11R6/include -O3 -fPIC -fno-common -ffast-math -funroll-loops -fexpensive-optimizations -no-cpp-precomp -dynamic -Ddarwin
|
|
|
|
# Library names (actual file names)
|
|
GL_LIB_NAME = libGL.dylib
|
|
GLU_LIB_NAME = libGLU.dylib
|
|
GLUT_LIB_NAME = libglut.dylib
|
|
GLW_LIB_NAME = libGLw.dylib
|
|
OSMESA_LIB_NAME = libOSMesa.dylib
|
|
|
|
GL_LIB_DEPS = -L/usr/X11R6/lib -lX11 -lXext -lm -lpthread
|
|
OSMESA_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -lGL
|
|
GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -lGL
|
|
GLUT_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -lGL -lGLU -L/usr/X11R6/lib -lX11 -lXmu -lXi -lXext
|
|
GLW_LIB_DEPS = -L/usr/X11R6/lib -lX11 -lXt $(TOP)/lib/GL.dylib
|
|
APP_LIB_DEPS = -L$(TOP)/lib -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -L/usr/X11R6/lib -lX11 -lXmu -lXt -lXi -lm
|
|
|
|
# omit glw lib for now:
|
|
SRC_DIRS = gallium mesa glu glut/glx
|
|
|