Update Makefile to trim data files
parent
30ac53ff41
commit
ae09662f43
|
|
@ -766,9 +766,13 @@ endif
|
||||||
trim:
|
trim:
|
||||||
ifneq ($(IS_DARWIN),0)
|
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 *.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
|
make convert
|
||||||
else
|
else
|
||||||
sed -i -e's/[[:space:]]*$$//' *.sh *.h *.cpp *.asm *.s *.sln *.vcxproj *.filters GNUmakefile GNUmakefile-cross
|
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
|
make convert
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue