srcclean in preparation for branching 0.237 release

This commit is contained in:
Vas Crabb 2021-10-24 09:58:53 +11:00
parent 5ab93130eb
commit e778bb9a8c
31 changed files with 513 additions and 512 deletions

View File

@ -3352,7 +3352,8 @@ license:CC0
<dataarea name="flop" size="143360">
<rom name="all about america (imperfect 4am crack) - disk 2a - maps and quizzes.dsk" size="143360" crc="93b110dd" sha1="75e378b79110c4d45a6c7774b04e98ae2aa87f7c" />
</dataarea>
</part> </software>
</part>
</software>
<software name="allabtpm">
<description>All About Purim (cleanly cracked)</description>

View File

@ -1809,18 +1809,18 @@ tests: $(REGTESTS)
cleansrc:
@echo Cleaning up tabs/spaces/end of lines....
ifeq (posix,$(SHELLTYPE))
$(SILENT) find src \
$(SILENT) find src \( \
-name \*.c -o -name \*.cpp -o \
-name \*.h -o -name \*.hpp -o -name \*.hxx -o \
-name \*.ipp -o \
-name \*.mm -o \
-name \*.lay -o \
-name \*.lst \
-exec ./srcclean {} \; >&2
$(SILENT) find hash -name \*.hsi -o -name \*.xml -exec ./srcclean {} \; >&2
$(SILENT) find bgfx -name \*.json -exec ./srcclean {} \; >&2
$(SILENT) find plugins -name \*.lua -o -name \*.json -exec ./srcclean {} \; >&2
$(SILENT) find scripts -name \*.lua -exec ./srcclean {} \; >&2
\) -exec ./srcclean {} \; >&2
$(SILENT) find hash \( -name \*.hsi -o -name \*.xml \) -exec ./srcclean {} \; >&2
$(SILENT) find bgfx \( -name \*.json \) -exec ./srcclean {} \; >&2
$(SILENT) find plugins \( -name \*.lua -o -name \*.json \) -exec ./srcclean {} \; >&2
$(SILENT) find scripts \( -name \*.lua \) -exec ./srcclean {} \; >&2
else
$(shell for /r src %%i in (*.c, *.cpp, *.h, *.hpp, *.hxx, *.ipp, *.mm, *.lay, *.lst) do srcclean %%i >&2 )
$(shell for /r hash %%i in (*.hsi, *.xml) do srcclean %%i >&2 )