mirror of
				https://github.com/thunderbrewhq/thunderbrew
				synced 2025-10-27 22:36:05 +03:00 
			
		
		
		
	 706c8903a1
			
		
	
	
		706c8903a1
		
			
		
	
	
	
	
		
			
			* chore(build): add vendored SDL 3.0.0 library * chore(build): add vendored glew-cmake-2.2.0 library * feat(console): in the presence of -opengl launch flag, change GxApi to OpenGl * feat(gx): add uncompleted CGxDeviceGLSDL targeting Windows and Linux * chore(build): change SDL3 linkage from shared (bad) to to static (good)
		
			
				
	
	
		
			25 lines
		
	
	
		
			791 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			791 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # For cross-compiling from Linux to Windows 32-bit using mingw32
 | |
| # http://mingw-w64.org/
 | |
| #
 | |
| # Ubuntu/Debian:
 | |
| # $ sudo apt install mingw-w64
 | |
| # $ make SYSTEM=linux-mingw32
 | |
| 
 | |
| NAME      := glew32
 | |
| HOST      := i686-w64-mingw32
 | |
| GLEW_DEST ?= /usr/local/$(HOST)
 | |
| CC    := $(HOST)-gcc
 | |
| LD    := $(HOST)-ld
 | |
| LN    :=
 | |
| STRIP :=
 | |
| LDFLAGS.GL = -L/usr/$(HOST)/lib -lopengl32 -lgdi32 -luser32 -lkernel32
 | |
| CFLAGS.EXTRA  += -fno-builtin -fno-stack-protector -Wno-cast-function-type
 | |
| 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    = -nostdlib -shared -soname $(LIB.SONAME) --out-implib lib/$(LIB.DEVLNK)
 |