glew/Makefile

104 lines
3.3 KiB
Makefile

## The OpenGL Extension Wrangler Library
## Copyright (C) 2003, 2002, Milan Ikits
## Copyright (C) 2002, Lev Povalahev
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
## modification, are permitted provided that the following conditions are met:
##
## * Redistributions of source code must retain the above copyright notice,
## this list of conditions and the following disclaimer.
## * Redistributions in binary form must reproduce the above copyright notice,
## this list of conditions and the following disclaimer in the documentation
## and/or other materials provided with the distribution.
## * The name of the author may be used to endorse or promote products
## derived from this software without specific prior written permission.
##
## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
## AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
## ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
## LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
## CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
## SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
## INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
## CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
## ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
## THE POSSIBILITY OF SUCH DAMAGE.
GLEW_TARGET ?= /usr
GLEW_VERSION = 1.0.6
SYSTEM = $(strip $(shell uname -s))
ifeq ($(patsubst CYGWIN%,CYGWIN,$(SYSTEM)), CYGWIN)
CC = \gcc-2 -mno-cygwin
LD = \gcc-2 -mno-cygwin
NAME = glew32
DEFINE = -D'GLEW_STATIC'
else
ifeq ($(patsubst Linux%,Linux,$(SYSTEM)), Linux)
CC = \gcc
LD = \ld
NAME = GLEW
else
$(error "Platform '$(SYSTEM)' not supported")
endif
endif
AR = \ar
INSTALL = \install
RM = \rm -f
LN = \ln -s
ifeq ($(MAKECMDGOALS), debug)
OPT = -g
else
OPT = -O3 -fomit-frame-pointer
endif
INCLUDE = -Iinclude
CFLAGS = $(OPT) $(INCLUDE) $(DEFINE)
LIB.A = lib$(NAME).a
LIB.SO = lib$(NAME).so.$(GLEW_VERSION)
LIB.SO.LNK = lib$(NAME).so
LIB.SRCS = src/glew.c
LIB.OBJS = $(LIB.SRCS:.c=.o)
BIN = glewinfo
BIN.SRCS = src/glewinfo.c
BIN.OBJS = $(BIN.SRCS:.c=.o)
BIN.LIBS = -Llib -L/usr/X11R6/lib -lglut -l$(NAME) -lGLU -lGL -lXmu -lX11
all: lib/$(LIB.A) lib/$(LIB.SO) bin/$(BIN)
lib/$(LIB.A): $(LIB.OBJS)
$(AR) cr $@ $^
lib/$(LIB.SO): $(LIB.OBJS)
$(LD) -shared -o $@ $^
$(LN) $(LIB) lib/$(LIB.LNK)
bin/$(BIN): $(BIN.SRCS)
$(CC) $(CFLAGS) -o $@ $^ $(BIN.LIBS)
%.o: %.c
$(CC) -c $(CFLAGS) -o $@ $<
install: all
$(INSTALL) -d -m 755 $(GLEW_TARGET)/include/GL
$(INSTALL) -m 644 include/GL/glew.h include/GL/glxew.h $(GLEW_TARGET)/include/GL
$(INSTALL) -d -m 755 $(GLEW_TARGET)/lib
$(INSTALL) -s -m 755 lib/$(LIB.SO) $(GLEW_TARGET)/lib
$(LN) $(GLEW_TARGET)/lib/$(LIB.SO) $(GLEW_TARGET)/lib/$(LIB.SO.LNK)
$(INSTALL) -d -m 755 $(GLEW_TARGET)/bin
$(INSTALL) -s -m 755 bin/$(BIN) $(GLEW_TARGET)/bin
uninstall:
$(RM) $(GLEW_TARGET)/include/GL/glew.h $(GLEW_TARGET)/include/GL/glxew.h
$(RM) $(GLEW_TARGET)/lib/$(LIB.SO.LNK) $(GLEW_TARGET)/lib/$(LIB.SO)
$(RM) $(GLEW_TARGET)/bin/$(BIN)
clean:
$(RM) $(LIB.OBJS) lib/$(LIB.A) lib/$(LIB.SO) lib/$(LIB.SO.LNK) \
$(BIN.OBJS) bin/$(BIN)