summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2019-08-13 13:17:48 -0400
committer GitHub <noreply@github.com>2019-08-13 13:17:48 -0400
commit6d6246920f3f07777e947d321386deaf55f837d6 (patch)
tree70d3eda35530a033a60f5a568c26d9f024c500f4
parent049fbae4e08c7343122557d245ea0647652e03bc (diff)
parent573df05d47c9e00e652db1c90a85fc97e3d42702 (diff)
Merge pull request #5467 from groessler/makefile-cleansrc-fix
toplevel makefile: fix 'cleansrc' target for Unix/Linux
-rw-r--r--makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/makefile b/makefile
index d618a025b22..68b35c960a3 100644
--- a/makefile
+++ b/makefile
@@ -1685,13 +1685,13 @@ ifeq ($(OS),windows)
$(shell for /r src %%i in (*.hxx) do srcclean %%i >&2 )
$(shell for /r hash %%i in (*.xml) do srcclean %%i >&2 )
else
- $(shell find src/ -name *.c -exec ./srcclean {} >&2 ;)
- $(shell find src/ -name *.h -exec ./srcclean {} >&2 ;)
- $(shell find src/ -name *.mak -exec ./srcclean {} >&2 ;)
- $(shell find src/ -name *.lst -exec ./srcclean {} >&2 ;)
- $(shell find src/ -name *.lay -exec ./srcclean {} >&2 ;)
- $(shell find src/ -name *.hxx -exec ./srcclean {} >&2 ;)
- $(shell find hash/ -name *.xml -exec ./srcclean {} >&2 ;)
+ @find src/ -name \*.c -exec ./srcclean {} \; >&2
+ @find src/ -name \*.h -exec ./srcclean {} \; >&2
+ @find src/ -name \*.mak -exec ./srcclean {} \; >&2
+ @find src/ -name \*.lst -exec ./srcclean {} \; >&2
+ @find src/ -name \*.lay -exec ./srcclean {} \; >&2
+ @find src/ -name \*.hxx -exec ./srcclean {} \; >&2
+ @find hash/ -name \*.xml -exec ./srcclean {} \; >&2
endif
#-------------------------------------------------