summaryrefslogtreecommitdiff
path: root/config/Makefile.linux-mingw32
diff options
context:
space:
mode:
Diffstat (limited to 'config/Makefile.linux-mingw32')
-rw-r--r--config/Makefile.linux-mingw3226
1 files changed, 26 insertions, 0 deletions
diff --git a/config/Makefile.linux-mingw32 b/config/Makefile.linux-mingw32
new file mode 100644
index 0000000..fdb2239
--- /dev/null
+++ b/config/Makefile.linux-mingw32
@@ -0,0 +1,26 @@
+# For cross-compiling from Linux to Windows x86 using mingw32
+# http://www.mingw.org/
+#
+# $ make SYSTEM=linux-mingw32
+#
+
+NAME := glew32
+HOST := i586-mingw32msvc
+CC := $(HOST)-gcc
+LD := $(HOST)-ld
+LN :=
+STRIP :=
+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
+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
+LDFLAGS.SO.MX = -shared -soname $(LIB.SONAME.MX) --out-implib lib/$(LIB.DEVLNK.MX)