From 5ab200bb68b88827f90553009610d896e3bf9e74 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 26 Jul 2015 02:33:46 -0400 Subject: [PATCH] Added Install.txt to 'make dist' recipe --- GNUmakefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 92d9d1d0..bbbfe19e 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -56,7 +56,7 @@ SUN_COMPILER = $(shell $(CXX) -V 2>&1 | $(EGREP) -i -c "CC: Sun") # TODO: Uncomment the line above when Clang's integrated assembler can parse and generate code that passes the self tests. ################################################################# -# Platform detection +# Platform and architecture detection MACHINE ?= $(shell $(UNAME) -m) SYSTEM ?= $(shell $(UNAME) -s) @@ -72,9 +72,6 @@ IS_OPENBSD = $(shell $(CXX) -dumpmachine 2>&1 | $(EGREP) -i -c "openbsd") IS_SUN = $(shell echo $SYSTEM | $(EGREP) -i -c "SunOS") IS_FEDORA22_i686 = $(shell echo $RELEASE | $(EGREP) -i -c "fc22.i686") -################################################################# -# Architecture detection - ######################### # May (or may not) be used below ifeq ($(findstring -m32 -m64,$(CXXFLAGS)),) @@ -418,7 +415,7 @@ endif .PHONY: zip dist zip dist: distclean -zip -9 cryptopp.zip *.h *.cpp *.asm License.txt Readme.txt \ - GNUmakefile GNUmakefile-cross Doxyfile \ + Install.txt GNUmakefile GNUmakefile-cross Doxyfile \ cryptest_bds.bdsgroup cryptest_bds.bdsproj cryptest_bds.bpf cryptlib_bds.bdsproj \ cryptest.sln cryptest.dsp cryptest.dsw cryptest.vcproj \ dlltest.dsp dlltest.vcproj cryptlib.dsp cryptlib.vcproj cryptopp.rc \