Differences From Artifact [3b76f70b4e]:
- Executable file Makefile.in — part of check-in [72d8240457] at 2023-04-01 16:49:07 on branch trunk — Added the CENGINE abstraction between `docker` and `podman` in the Makefile's container convenience targets. (user: wyoung size: 5361) [more...]
To Artifact [422c9fc256]:
- Executable file Makefile.in — part of check-in [492787465d] at 2023-06-18 11:16:45 on branch compile_commands.json — Initial *incomplete* attempt at integrating compile_commands.json support, for code editors which support it. This is a copy/paste port from the libfossil tree, but lacks one final piece which is difficult to emulate in POSIX make (as opposed to GNU make). Build file changes only, no code changes. (user: stephan size: 5515)
| ︙ | |||
81 82 83 84 85 86 87 88 89 90 91 92 93 94 | 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | + + + + | # components. EMSDK_ENV refers to the "environment" script which comes # with the Emscripten SDK package: # https://emscripten.org/docs/getting_started/downloads.html EMSDK_HOME = @EMSDK_HOME@ EMSDK_ENV = @EMSDK_ENV@ EMCC_OPT = @EMCC_OPT@ EMCC_WRAPPER = $(SRCDIR_tools)/emcc.sh # MAKE_COMPILATION_DB (yes/no) determines whether or not the # compile_commands.json file will be generated. MAKE_COMPILATION_DB = @MAKE_COMPILATION_DB@ .PHONY: all tags include $(SRCDIR)/main.mk distclean: clean -rm -f autoconfig.h config.log Makefile |
| ︙ |