From e2de72e7479e918ce5556e4022245ba51e866578 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Tue, 18 Jul 2023 23:21:28 +0300 Subject: [PATCH] build: improve 'dist' target Ensure we compile first. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 27465bde..0be7972a 100644 --- a/Makefile +++ b/Makefile @@ -126,7 +126,9 @@ coverage: $(BUILDDIR_COVERAGE) @mkdir -p $(BUILDDIR_COVERAGE)/meson-logs/coverage @$(GENHTML) $(covfile) --output-directory $(BUILDDIR_COVERAGE)/meson-logs/coverage/ @echo "coverage report at: file://$(BUILDDIR_COVERAGE)/meson-logs/coverage/index.html" + dist: $(BUILDDIR) + $(MESON) compile -C $(BUILDDIR) $(VERBOSE) $(MESON) dist -C $(BUILDDIR) $(VERBOSE) distclean: clean