mirror of
https://github.com/nigels-com/glew.git
synced 2024-11-11 08:43:49 +00:00
25 lines
916 B
Makefile
25 lines
916 B
Makefile
# For cross-compiling from Linux to Windows x86 using mingw32
|
|
# http://www.mingw.org/
|
|
#
|
|
# $ make SYSTEM=linux-mingw32
|
|
#
|
|
|
|
NAME = glew32
|
|
CC = i586-mingw32msvc-gcc
|
|
LD = i586-mingw32msvc-ld
|
|
CFLAGS.SO = -DGLEW_BUILD
|
|
LDFLAGS.GL = -lglu32 -lopengl32 -lgdi32 -luser32 -lkernel32
|
|
WARN = -Wall -W
|
|
POPT = -O2
|
|
BIN.SUFFIX = .exe
|
|
LIB.SONAME = lib$(NAME).dll
|
|
LIB.DEVLNK = lib$(NAME).dll.a # for mingw this is the dll import lib
|
|
LIB.SHARED = $(NAME).dll
|
|
LIB.STATIC = lib$(NAME).a # the static lib will be broken (see CFLAGS.SO)
|
|
LDFLAGS.SO = -shared -soname $(LIB.SONAME) --out-implib lib/$(LIB.DEVLNK)
|
|
LIB.SONAME.MX = lib$(NAME)mx.dll
|
|
LIB.DEVLNK.MX = lib$(NAME)mx.dll.a # for mingw this is the dll import lib
|
|
LIB.SHARED.MX = $(NAME)mx.dll
|
|
LIB.STATIC.MX = lib$(NAME)mx.a # the static lib will be broken (see CFLAGS.SO)
|
|
LDFLAGS.SO.MX = -shared -soname $(LIB.SONAME.MX) --out-implib lib/$(LIB.DEVLNK.MX)
|