diff options
| author | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2025-11-02 11:05:06 +0200 |
|---|---|---|
| committer | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2025-11-02 11:05:54 +0200 |
| commit | 515d6f5be782df437990a5cfe1cc736c711b34dd (patch) | |
| tree | 70a9f8cd074c63d3f13ef70a1fe1b03e3d244b8b | |
| parent | d3ffb4ca2c77b92dc98caa336c5d200a790912d2 (diff) | |
Makefile: small tweaks
| -rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -56,10 +56,12 @@ endif # make clean all MESON_FLAGS="-Db_sanitize=thread" CXX=clang++ CC=clang all: $(BUILDDIR) @$(MESON) compile -C $(BUILDDIR) $(VERBOSE) - @ln -sf $(BUILDDIR)/compile_commands.json $(CURDIR) || /bin/true -$(BUILDDIR): +setup: @$(MESON) setup $(MESON_FLAGS) $(BUILDDIR) + @ln -sf $(BUILDDIR)/compile_commands.json $(CURDIR) || /bin/true + +$(BUILDDIR): setup check: test @@ -153,7 +155,6 @@ dist: $(BUILDDIR) distclean: clean - # # documentation # |
