mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-15 08:49:20 +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
22 lines
557 B
Makefile
22 lines
557 B
Makefile
NAME = GLEW
|
|
GLEW_DEST ?= /usr/X11R6
|
|
CC = cc
|
|
# use gcc for linking, with ld it does not work
|
|
LD = cc
|
|
ifneq (undefined, $(origin GLEW_MX))
|
|
CFLAGS.EXTRA = -DGLEW_MX
|
|
endif
|
|
LDFLAGS.SO = -shared -Wl,-soname=$(LIB.SONAME)
|
|
LDFLAGS.EXTRA = -L/usr/X11R6/lib
|
|
LIBDIR = $(GLEW_DEST)/lib
|
|
LDFLAGS.GL = -lXmu -lXi -lGLU -lGL -lXext -lX11
|
|
LDFLAGS.STATIC = -Wl,-Bstatic
|
|
LDFLAGS.DYNAMIC = -Wl,-Bdynamic
|
|
WARN = -Wall -W
|
|
POPT = -O2
|
|
BIN.SUFFIX =
|
|
LIB.SONAME = lib$(NAME).so.$(SO_MAJOR)
|
|
LIB.DEVLNK = lib$(NAME).so
|
|
LIB.SHARED = lib$(NAME).so.$(SO_VERSION)
|
|
LIB.STATIC = lib$(NAME).a
|