diff options
| -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 # |
