From ae09662f43e6ae3777775ce8c86d88bac20fc8f2 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 15 May 2017 22:53:44 -0400 Subject: [PATCH] Update Makefile to trim data files --- GNUmakefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/GNUmakefile b/GNUmakefile index 44920a45..7947557b 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -766,9 +766,13 @@ endif trim: ifneq ($(IS_DARWIN),0) sed -i '' -e's/[[:space:]]*$$//' *.sh *.h *.cpp *.asm *.s *.sln *.vcxproj *.filters GNUmakefile GNUmakefile-cross + sed -i '' -e's/[[:space:]]*$$//' *.sh TestData/*.dat + sed -i '' -e's/[[:space:]]*$$//' *.sh TestVectors/*.txt make convert else sed -i -e's/[[:space:]]*$$//' *.sh *.h *.cpp *.asm *.s *.sln *.vcxproj *.filters GNUmakefile GNUmakefile-cross + sed -i -e's/[[:space:]]*$$//' *.sh TestData/*.dat + sed -i -e's/[[:space:]]*$$//' *.sh TestVectors/*.txt make convert endif