| # Configuration for Darwin / MacOS X, making static libs |
| |
| include $(TOP)/configs/darwin |
| |
| CONFIG_NAME = darwin-static |
| |
| # Compiler and flags |
| CFLAGS = -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk \ |
| -I/usr/X11R6/include -O3 -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 -fno-common -ffast-math -funroll-loops -fexpensive-optimizations -no-cpp-precomp -dynamic -Ddarwin |
| MKLIB_OPTIONS = -static -archopt "-isysroot /Developer/SDKs/MacOSX10.4u.sdk" |
| |
| # Work around aliasing bugs - developers should comment this out |
| CFLAGS += -fno-strict-aliasing |
| CXXFLAGS += -fno-strict-aliasing |
| |
| # Library names (actual file names) |
| GL_LIB_NAME = libGL.a |
| GLU_LIB_NAME = libGLU.a |
| GLUT_LIB_NAME = libglut.a |
| GLW_LIB_NAME = libGLw.a |
| OSMESA_LIB_NAME = libOSMesa.a |
| |
| GL_LIB_DEPS = |
| OSMESA_LIB_DEPS = |
| GLU_LIB_DEPS = |
| GLUT_LIB_DEPS = |
| GLW_LIB_DEPS = |
| APP_LIB_DEPS = -Wl,-search_paths_first -L$(TOP)/lib -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -L/usr/X11R6/lib -lX11 -lXmu -lXt -lXi -lstdc++ -lgcc_s.1 -lm |