mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-13 07:49:19 +01:00
![Soren Jorvang](/assets/img/avatar_default.png)
I am not replacing the following header files used by the Windows build, as I don't have a Windows build setup to test. Please point the Windows build at the header files inside these clean distribution packages and garbage collect the duplicates: GLew/*.h and SDL/Include_1.2. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5711 8ced0084-cf51-0410-be5f-012b33b47a6e
27 lines
721 B
Makefile
27 lines
721 B
Makefile
NAME = $(GLEW_NAME)
|
|
CC = cc
|
|
LD = cc
|
|
CFLAGS.EXTRA = -no-cpp-precomp -dynamic -fno-common
|
|
ifneq (undefined, $(origin GLEW_MX))
|
|
CFLAGS.EXTRA += -DGLEW_MX
|
|
endif
|
|
PICFLAG = -fPIC
|
|
LDFLAGS.SO = -dynamiclib -install_name $(GLEW_DEST)/lib/$(LIB.SHARED)
|
|
LDFLAGS.EXTRA =
|
|
ifneq (undefined, $(origin GLEW_APPLE_GLX))
|
|
CFLAGS.EXTRA += -I/usr/X11R6/include -D'GLEW_APPLE_GLX'
|
|
LDFLAGS.GL = -L/usr/X11R6/lib -lXmu -lXi -lGLU -lGL -lXext -lX11
|
|
else
|
|
LDFLAGS.GL = -framework AGL -framework OpenGL
|
|
endif
|
|
LDFLAGS.STATIC =
|
|
LDFLAGS.DYNAMIC =
|
|
WARN = -Wall -W
|
|
POPT = -O2
|
|
BIN.SUFFIX =
|
|
LIB.SONAME = lib$(NAME).$(SO_MAJOR).dylib
|
|
LIB.DEVLNK = lib$(NAME).dylib
|
|
LIB.SHARED = lib$(NAME).$(SO_VERSION).dylib
|
|
LIB.STATIC = lib$(NAME).a
|
|
SHARED_OBJ_EXT = pic_o
|