summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2021-08-22 08:09:29 +1000
committer Vas Crabb <vas@vastheman.com>2021-08-22 08:12:22 +1000
commit94664102484edb96ac81f8613b096cb11cdeb6ab (patch)
tree5a848bdc14b732820c42bdb85ef80b5500cf64e8 /makefile
parentad2f2f168d30755af9b47b5e09000a39d07b95d7 (diff)
srcclean for upcoming release
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/makefile b/makefile
index 37118020777..62d72e8c459 100644
--- a/makefile
+++ b/makefile
@@ -1816,6 +1816,7 @@ ifeq (posix,$(SHELLTYPE))
$(SILENT) find hash -name \*.xml -exec ./srcclean {} \; >&2
$(SILENT) find bgfx -name \*.json -exec ./srcclean {} \; >&2
$(SILENT) find plugins -name \*.lua -exec ./srcclean {} \; >&2
+ $(SILENT) find plugins -name \*.json -exec ./srcclean {} \; >&2
$(SILENT) find scripts -name \*.lua -exec ./srcclean {} \; >&2
else
$(shell for /r src %%i in (*.c) do srcclean %%i >&2 )
@@ -1832,6 +1833,7 @@ else
$(shell for /r hash %%i in (*.xml) do srcclean %%i >&2 )
$(shell for /r bgfx %%i in (*.json) do srcclean %%i >&2 )
$(shell for /r plugins %%i in (*.lua) do srcclean %%i >&2 )
+ $(shell for /r plugins %%i in (*.json) do srcclean %%i >&2 )
$(shell for /r scripts %%i in (*.lua) do srcclean %%i >&2 )
endif