From 1ab282a9d3cc5125eab98543b7b0e587e3e55e7b Mon Sep 17 00:00:00 2001 From: Nigel Stewart Date: Sun, 8 May 2016 00:12:11 +1000 Subject: [PATCH] Clarify that Makefile STRIP= does not affect install step, which always strips --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8280f87..ea3cf3a 100644 --- a/Makefile +++ b/Makefile @@ -51,16 +51,17 @@ ifneq ($(GLEW_NO_GLU), -DGLEW_NO_GLU) LIBGLU = glu endif -DIST_NAME ?= glew-$(GLEW_VERSION) +DIST_NAME ?= glew-$(GLEW_VERSION) DIST_SRC_ZIP ?= $(shell pwd)/$(DIST_NAME).zip DIST_SRC_TGZ ?= $(shell pwd)/$(DIST_NAME).tgz DIST_WIN32 ?= $(shell pwd)/$(DIST_NAME)-win32.zip DIST_DIR := $(shell mktemp -d /tmp/glew.XXXXXX)/$(DIST_NAME) -# To disable stripping of binaries either: +# To disable stripping of linked binaries either: # - use STRIP= on gmake command-line # - edit this makefile to set STRIP to the empty string +# (Note: STRIP does not affect the strip in the install step) # # To disable symlinks: # - use LN= on gmake command-line