Add Makefile target which strips all trailing whitespace.

This commit is contained in:
Tim 'mithro' Ansell 2020-05-22 16:00:05 -07:00 committed by Tim Edwards
parent 2c066c8df0
commit 83c9288e13
1 changed files with 6 additions and 1 deletions

View File

@ -127,6 +127,11 @@ tags:
${RM} tags
find . ${MODULES} ${PROGRAMS} -name "*.[ch]" -maxdepth 1 | xargs ctags -o tags
TAGS:
TAGS:
${RM} TAGS
find . ${MODULES} ${PROGRAMS} -name "*.[ch]" -maxdepth 1 | xargs etags -o TAGS
fix-trailing-whitespace:
find -name "*.[ch]" | xargs sed -i -e's/\s\+$$//'
find -name "*.cpp" | xargs sed -i -e's/\s\+$$//'
find -name "*.tcl" | xargs sed -i -e's/\s\+$$//'