mirror of
https://github.com/Perlmint/glew-cmake.git
synced 2024-11-13 10:33:48 +00:00
e770d34a35
the canonical system name and include the corresponding Makefile snippet from config/. config.guess has been written with portability in mind, so it should work properly on all supported systems. Should its licence (GPL) become a problem, it can be replaced with a simpler script that supports only the systems we know something about. Adding support for a new system is just a matter of running config/config.guess and writing the matching config/Makefile.$system file. git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@315 783a27ee-832a-0410-bc00-9f386506c6dd
20 lines
664 B
Makefile
20 lines
664 B
Makefile
NAME = glew32
|
|
CC = gcc
|
|
# use gcc for linking, with ld it does not work
|
|
LD = gcc
|
|
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.SO = -shared -Wl,-soname,$(LIB.SONAME) -Wl,--out-implib,lib/$(LIB.DEVLNK)
|
|
LDFLAGS.GL = -lglu32 -lopengl32 -lgdi32 -luser32 -lkernel32
|
|
LDFLAGS.EXTRA = -L/mingw/lib
|
|
WARN = -Wall -W
|
|
POPT = -O2
|
|
BIN.SUFFIX = .exe
|
|
LIB.SONAME = $(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)
|