Clarify that Makefile STRIP= does not affect install step, which always strips

This commit is contained in:
Nigel Stewart 2016-05-08 00:12:11 +10:00
parent bbb23c534a
commit 1ab282a9d3

View File

@ -51,16 +51,17 @@ ifneq ($(GLEW_NO_GLU), -DGLEW_NO_GLU)
LIBGLU = glu LIBGLU = glu
endif endif
DIST_NAME ?= glew-$(GLEW_VERSION) DIST_NAME ?= glew-$(GLEW_VERSION)
DIST_SRC_ZIP ?= $(shell pwd)/$(DIST_NAME).zip DIST_SRC_ZIP ?= $(shell pwd)/$(DIST_NAME).zip
DIST_SRC_TGZ ?= $(shell pwd)/$(DIST_NAME).tgz DIST_SRC_TGZ ?= $(shell pwd)/$(DIST_NAME).tgz
DIST_WIN32 ?= $(shell pwd)/$(DIST_NAME)-win32.zip DIST_WIN32 ?= $(shell pwd)/$(DIST_NAME)-win32.zip
DIST_DIR := $(shell mktemp -d /tmp/glew.XXXXXX)/$(DIST_NAME) 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 # - use STRIP= on gmake command-line
# - edit this makefile to set STRIP to the empty string # - edit this makefile to set STRIP to the empty string
# (Note: STRIP does not affect the strip in the install step)
# #
# To disable symlinks: # To disable symlinks:
# - use LN= on gmake command-line # - use LN= on gmake command-line