#!gmake ## The OpenGL Extension Wrangler Library ## Copyright (C) 2002-2008, Milan Ikits ## Copyright (C) 2002-2008, Marcelo E. Magallon ## 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. include config/version SHELL = /bin/sh SYSTEM = $(shell config/config.guess | cut -d - -f 3 | sed -e 's/[0-9\.]//g;') SYSTEM.SUPPORTED = $(shell test -f config/Makefile.$(SYSTEM) && echo 1) ifeq ($(SYSTEM.SUPPORTED), 1) include config/Makefile.$(SYSTEM) else $(error "Platform '$(SYSTEM)' not supported") endif GLEW_DEST ?= /usr BINDIR ?= $(GLEW_DEST)/bin LIBDIR ?= $(GLEW_DEST)/lib INCDIR ?= $(GLEW_DEST)/include/GL SHARED_OBJ_EXT ?= o TARDIR = ../glew-$(GLEW_VERSION) TARBALL = ../glew-$(GLEW_VERSION).tar.gz DIST_DIR = glew-$(GLEW_VERSION) DIST_WIN32 = glew-$(GLEW_VERSION)-win32.zip DIST_SRC_ZIP = glew-$(GLEW_VERSION).zip DIST_SRC_TGZ = glew-$(GLEW_VERSION).tgz AR = ar INSTALL = install STRIP = strip RM = rm -f LN = ln -sf ifeq ($(MAKECMDGOALS), debug) OPT = -g else OPT = $(POPT) endif INCLUDE = -Iinclude CFLAGS = $(OPT) $(WARN) $(INCLUDE) $(CFLAGS.EXTRA) LIB.SRCS = src/glew.c LIB.OBJS = $(LIB.SRCS:.c=.o) LIB.SOBJS = $(LIB.SRCS:.c=.$(SHARED_OBJ_EXT)) LIB.LDFLAGS = $(LDFLAGS.EXTRA) $(LDFLAGS.GL) LIB.LIBS = $(GL_LDFLAGS) GLEWINFO.BIN = glewinfo$(BIN.SUFFIX) GLEWINFO.BIN.SRCS = src/glewinfo.c GLEWINFO.BIN.OBJS = $(GLEWINFO.BIN.SRCS:.c=.o) VISUALINFO.BIN = visualinfo$(BIN.SUFFIX) VISUALINFO.BIN.SRCS = src/visualinfo.c VISUALINFO.BIN.OBJS = $(VISUALINFO.BIN.SRCS:.c=.o) BIN.LIBS = -Llib $(LDFLAGS.DYNAMIC) -l$(NAME) $(LDFLAGS.EXTRA) $(LDFLAGS.GL) all debug: lib/$(LIB.SHARED) lib/$(LIB.STATIC) bin/$(GLEWINFO.BIN) bin/$(VISUALINFO.BIN) glew.pc lib: mkdir lib lib/$(LIB.STATIC): $(LIB.OBJS) $(AR) cr $@ $^ lib/$(LIB.SHARED): $(LIB.SOBJS) $(LD) $(LDFLAGS.SO) -o $@ $^ $(LIB.LDFLAGS) $(LIB.LIBS) ifeq ($(patsubst mingw%,mingw,$(SYSTEM)), mingw) else $(LN) $(LIB.SHARED) lib/$(LIB.SONAME) $(LN) $(LIB.SHARED) lib/$(LIB.DEVLNK) endif bin/$(GLEWINFO.BIN): $(GLEWINFO.BIN.OBJS) lib/$(LIB.SHARED) $(CC) $(CFLAGS) -o $@ $(GLEWINFO.BIN.OBJS) $(BIN.LIBS) bin/$(VISUALINFO.BIN): $(VISUALINFO.BIN.OBJS) lib/$(LIB.SHARED) $(CC) $(CFLAGS) -o $@ $(VISUALINFO.BIN.OBJS) $(BIN.LIBS) %.o: %.c $(CC) -c $(CFLAGS) -o $@ $< src/glew.o: src/glew.c include/GL/glew.h include/GL/wglew.h include/GL/glxew.h $(CC) $(CFLAGS) $(CFLAGS.SO) -o $@ -c $< src/glew.pic_o: src/glew.c include/GL/glew.h include/GL/wglew.h include/GL/glxew.h $(CC) $(CFLAGS) $(PICFLAG) $(CFLAGS.SO) -o $@ -c $< glew.pc: glew.pc.in sed \ -e "s|@prefix@|$(GLEW_DEST)|g" \ -e "s|@libdir@|$(LIBDIR)|g" \ -e "s|@exec_prefix@|$(BINDIR)|g" \ -e "s|@includedir@|$(INCDIR)|g" \ -e "s|@version@|$(GLEW_VERSION)|g" \ < $< > $@ install: all # directories $(INSTALL) -d -m 0755 $(BINDIR) $(INSTALL) -d -m 0755 $(INCDIR) $(INSTALL) -d -m 0755 $(LIBDIR) # runtime ifeq ($(patsubst mingw%,mingw,$(SYSTEM)), mingw) $(STRIP) -x lib/$(LIB.SHARED) $(INSTALL) -m 0644 lib/$(LIB.SHARED) $(BINDIR)/ else $(STRIP) -x lib/$(LIB.SHARED) $(INSTALL) -m 0644 lib/$(LIB.SHARED) $(LIBDIR)/ $(LN) $(LIB.SHARED) $(LIBDIR)/$(LIB.SONAME) endif # development files $(INSTALL) -m 0644 include/GL/wglew.h $(INCDIR)/ $(INSTALL) -m 0644 include/GL/glew.h $(INCDIR)/ $(INSTALL) -m 0644 include/GL/glxew.h $(INCDIR)/ $(INSTALL) -m 0644 glew.pc $(LIBDIR)/pkgconfig/ ifeq ($(patsubst mingw%,mingw,$(SYSTEM)), mingw) $(INSTALL) -m 0644 lib/$(LIB.DEVLNK) $(LIBDIR)/ else $(STRIP) -x lib/$(LIB.STATIC) $(INSTALL) -m 0644 lib/$(LIB.STATIC) $(LIBDIR)/ $(LN) $(LIB.SHARED) $(LIBDIR)/$(LIB.DEVLNK) endif # utilities $(INSTALL) -s -m 0755 bin/$(GLEWINFO.BIN) bin/$(VISUALINFO.BIN) $(BINDIR)/ uninstall: $(RM) $(INCDIR)/wglew.h $(RM) $(INCDIR)/glew.h $(RM) $(INCDIR)/glxew.h $(RM) $(LIBDIR)/$(LIB.DEVLNK) ifeq ($(patsubst mingw%,mingw,$(SYSTEM)), mingw) $(RM) $(BINDIR)/$(LIB.SHARED) else $(RM) $(LIBDIR)/$(LIB.SONAME) $(RM) $(LIBDIR)/$(LIB.SHARED) $(RM) $(LIBDIR)/$(LIB.STATIC) endif $(RM) $(BINDIR)/$(GLEWINFO.BIN) $(BINDIR)/$(VISUALINFO.BIN) clean: $(RM) $(LIB.OBJS) $(RM) $(LIB.SOBJS) $(RM) lib/$(LIB.STATIC) lib/$(LIB.SHARED) lib/$(LIB.DEVLNK) lib/$(LIB.SONAME) $(LIB.STATIC) $(RM) $(GLEWINFO.BIN.OBJS) bin/$(GLEWINFO.BIN) $(VISUALINFO.BIN.OBJS) bin/$(VISUALINFO.BIN) $(RM) glew.pc # Compiler droppings $(RM) so_locations distclean: clean find . -name \*~ | xargs $(RM) find . -name .\*.sw\? | xargs $(RM) tardist: $(RM) -r $(TARDIR) mkdir $(TARDIR) cp -a . $(TARDIR) find $(TARDIR) -name CVS -o -name .cvsignore | xargs $(RM) -r find $(TARDIR) -name .svn | xargs $(RM) -r $(MAKE) -C $(TARDIR) distclean $(MAKE) -C $(TARDIR) $(MAKE) -C $(TARDIR) distclean $(RM) -r $(TARDIR)/auto/registry env GZIP=-9 tar -C `dirname $(TARDIR)` -cvzf $(TARBALL) `basename $(TARDIR)` dist-win32: $(RM) -r $(TARDIR) mkdir -p $(TARDIR) mkdir -p $(TARDIR)/bin mkdir -p $(TARDIR)/lib cp -a include $(TARDIR) cp -a doc $(TARDIR) cp -a *.txt $(TARDIR) cp -a lib/glew32.lib $(TARDIR)/lib cp -a lib/glew32s.lib $(TARDIR)/lib cp -a bin/glew32.dll $(TARDIR)/bin cp -a bin/glewinfo.exe $(TARDIR)/bin cp -a bin/visualinfo.exe $(TARDIR)/bin find $(TARDIR) -name CVS -o -name .cvsignore | xargs $(RM) -r find $(TARDIR) -name .svn | xargs $(RM) -r unix2dos $(TARDIR)/include/GL/*.h unix2dos $(TARDIR)/doc/*.txt unix2dos $(TARDIR)/doc/*.html unix2dos $(TARDIR)/*.txt rm -f ../$(DIST_WIN32) cd .. && zip -rv9 $(DIST_WIN32) $(DIST_DIR) dist-src: $(RM) -r $(TARDIR) mkdir -p $(TARDIR) mkdir -p $(TARDIR)/bin mkdir -p $(TARDIR)/lib cp -a auto $(TARDIR) $(RM) -Rf $(TARDIR)/auto/registry cp -a build $(TARDIR) cp -a config $(TARDIR) cp -a src $(TARDIR) cp -a doc $(TARDIR) cp -a include $(TARDIR) cp -a *.txt $(TARDIR) cp -a Makefile $(TARDIR) cp -a glew.pc.in $(TARDIR) find $(TARDIR) -name '*.o' | xargs $(RM) -r find $(TARDIR) -name '*.pic_o' | xargs $(RM) -r find $(TARDIR) -name '*~' | xargs $(RM) -r find $(TARDIR) -name CVS -o -name .cvsignore | xargs $(RM) -r find $(TARDIR) -name .svn | xargs $(RM) -r unix2dos $(TARDIR)/config/* unix2dos $(TARDIR)/auto/core/* unix2dos $(TARDIR)/auto/extensions/* find $(TARDIR) -name '*.h' | xargs unix2dos find $(TARDIR) -name '*.c' | xargs unix2dos find $(TARDIR) -name '*.txt' | xargs unix2dos find $(TARDIR) -name '*.html' | xargs unix2dos find $(TARDIR) -name '*.css' | xargs unix2dos find $(TARDIR) -name '*.sh' | xargs unix2dos find $(TARDIR) -name '*.pl' | xargs unix2dos find $(TARDIR) -name 'Makefile' | xargs unix2dos find $(TARDIR) -name '*.in' | xargs unix2dos find $(TARDIR) -name '*.pm' | xargs unix2dos find $(TARDIR) -name '*.rc' | xargs unix2dos rm -f ../$(DIST_SRC_ZIP) cd .. && zip -rv9 $(DIST_SRC_ZIP) $(DIST_DIR) dos2unix $(TARDIR)/config/* dos2unix $(TARDIR)/auto/core/* dos2unix $(TARDIR)/auto/extensions/* find $(TARDIR) -name '*.h' | xargs dos2unix find $(TARDIR) -name '*.c' | xargs dos2unix find $(TARDIR) -name '*.txt' | xargs dos2unix find $(TARDIR) -name '*.html' | xargs dos2unix find $(TARDIR) -name '*.css' | xargs dos2unix find $(TARDIR) -name '*.sh' | xargs dos2unix find $(TARDIR) -name '*.pl' | xargs dos2unix find $(TARDIR) -name 'Makefile' | xargs dos2unix find $(TARDIR) -name '*.in' | xargs dos2unix find $(TARDIR) -name '*.pm' | xargs dos2unix find $(TARDIR) -name '*.rc' | xargs dos2unix cd .. && env GZIP=-9 tar cvzf $(DIST_SRC_TGZ) $(DIST_DIR) extensions: $(MAKE) -C auto .PHONY: clean distclean tardist dist-win32 dist-src