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.
34 lines
1.3 KiB
Plaintext
34 lines
1.3 KiB
Plaintext
# Configuration for Darwin / MacOS X, making dynamic libs
|
|
|
|
include $(TOP)/configs/default
|
|
|
|
CONFIG_NAME = darwin
|
|
|
|
# Compiler and flags
|
|
CC = cc
|
|
CXX = cc
|
|
CFLAGS = -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk \
|
|
-I/usr/X11R6/include -O3 -fPIC -fno-common -ffast-math -funroll-loops -fexpensive-optimizations -no-cpp-precomp -dynamic -Ddarwin
|
|
CXXFLAGS = -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk \
|
|
-I/usr/X11R6/include -O3 -fPIC -fno-common -ffast-math -funroll-loops -fexpensive-optimizations -no-cpp-precomp -dynamic -Ddarwin
|
|
|
|
MKLIB_OPTIONS = -archopt "-isysroot /Developer/SDKs/MacOSX10.4u.sdk"
|
|
|
|
# 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
|
|
|