mirror of
https://github.com/nigels-com/glew.git
synced 2024-11-24 14:55:07 +00:00
d2af6d3918
Mostly this is quick, "do nothing" ifdefs when built with SYSTEM=linux-osmesa, to support the off-screen rendering mode of Mesa in headless tests. Support in glewinfo and visualinfo is enough to get them compile, but insufficient for them to run successfully.
37 lines
879 B
Makefile
37 lines
879 B
Makefile
NAME = $(GLEW_NAME)
|
|
CC = cc
|
|
LD = cc
|
|
M_ARCH ?= $(shell uname -m)
|
|
ARCH64 = false
|
|
ifeq (x86_64,${M_ARCH})
|
|
ARCH64 = true
|
|
endif
|
|
ifeq (ppc64,${M_ARCH})
|
|
ARCH64 = true
|
|
endif
|
|
ifeq (${ARCH64},true)
|
|
LDFLAGS.EXTRA = -L/usr/lib64
|
|
LIBDIR = $(GLEW_DEST)/lib64
|
|
else
|
|
LDFLAGS.EXTRA = -L/usr/lib
|
|
LIBDIR = $(GLEW_DEST)/lib
|
|
endif
|
|
LDFLAGS.GL = -lOSMesa
|
|
LDFLAGS.STATIC = -Wl,-Bstatic
|
|
LDFLAGS.DYNAMIC = -Wl,-Bdynamic
|
|
NAME = GLEW
|
|
WARN = -Wall -W
|
|
POPT = -O2
|
|
CFLAGS.EXTRA += -fPIC -DGLEW_OSMESA
|
|
BIN.SUFFIX =
|
|
LIB.SONAME = lib$(NAME).so.$(SO_MAJOR)
|
|
LIB.DEVLNK = lib$(NAME).so
|
|
LIB.SHARED = lib$(NAME).so.$(SO_VERSION)
|
|
LIB.STATIC = lib$(NAME).a
|
|
LDFLAGS.SO = -shared -Wl,-soname=$(LIB.SONAME)
|
|
LIB.SONAME.MX = lib$(NAME)mx.so.$(SO_MAJOR)
|
|
LIB.DEVLNK.MX = lib$(NAME)mx.so
|
|
LIB.SHARED.MX = lib$(NAME)mx.so.$(SO_VERSION)
|
|
LIB.STATIC.MX = lib$(NAME)mx.a
|
|
LDFLAGS.SO.MX = -shared -Wl,-soname=$(LIB.SONAME.MX)
|