mirror of
				https://github.com/Perlmint/glew-cmake.git
				synced 2025-11-03 22:04:16 +00:00 
			
		
		
		
	git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@622 783a27ee-832a-0410-bc00-9f386506c6dd
		
			
				
	
	
		
			23 lines
		
	
	
		
			661 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			661 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
 | 
						|
ifneq (undefined, $(origin GLEW_MX))
 | 
						|
CFLAGS.EXTRA = -DGLEW_MX
 | 
						|
endif
 | 
						|
CFLAGS.SO = -DGLEW_BUILD
 | 
						|
LDFLAGS.SO = -shared -soname $(LIB.SONAME) --out-implib lib/$(LIB.DEVLNK)
 | 
						|
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)
 |