summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/makefile b/makefile
index ff06e1b3726..bc5147e6b01 100644
--- a/makefile
+++ b/makefile
@@ -1755,14 +1755,14 @@ endif
ifeq (posix,$(SHELLTYPE))
$(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS)
- @echo '#define BARE_BUILD_VERSION "0.234"' > $@
+ @echo '#define BARE_BUILD_VERSION "0.235"' > $@
@echo 'extern const char bare_build_version[];' >> $@
@echo 'extern const char build_version[];' >> $@
@echo 'const char bare_build_version[] = BARE_BUILD_VERSION;' >> $@
@echo 'const char build_version[] = BARE_BUILD_VERSION " ($(NEW_GIT_VERSION))";' >> $@
else
$(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS)
- @echo #define BARE_BUILD_VERSION "0.234" > $@
+ @echo #define BARE_BUILD_VERSION "0.235" > $@
@echo extern const char bare_build_version[]; >> $@
@echo extern const char build_version[]; >> $@
@echo const char bare_build_version[] = BARE_BUILD_VERSION; >> $@
@@ -1814,7 +1814,9 @@ ifeq (posix,$(SHELLTYPE))
$(SILENT) find src -name \*.mm -exec ./srcclean {} \; >&2
$(SILENT) find hash -name \*.hsi -exec ./srcclean {} \; >&2
$(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 )
@@ -1829,7 +1831,9 @@ else
$(shell for /r src %%i in (*.mm) do srcclean %%i >&2 )
$(shell for /r hash %%i in (*.hsi) do srcclean %%i >&2 )
$(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