forked from nigels-com/glew
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request nigels-com#16 from BryceMehring/master
Added support for mingw-w64 cross-compilation.
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# For cross-compiling from Linux to Windows x86 using mingw-w64 | ||
# http://mingw-w64.sourceforge.net/ | ||
# | ||
# $ make SYSTEM=linux-mingw-w64 | ||
# | ||
|
||
NAME := glew32 | ||
CC := i686-w64-mingw32-gcc | ||
LD := i686-w64-mingw32-ld | ||
LN := | ||
STRIP := | ||
CFLAGS.SO = -DGLEW_BUILD | ||
LDFLAGS.GL = -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) |