From 8d5990cc6045f21622df15820c7716f2388d3cf8 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sun, 6 Apr 2025 13:29:45 -0300 Subject: Makefile: Prefix unit-test targets with "check-unit" --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 303769b..c99a49e 100644 --- a/Makefile +++ b/Makefile @@ -285,7 +285,7 @@ src/sort-given.txt: $(sources.conf) src/sort-expected.txt printf "%s\t%s\n", $$1, cnt+1; \ }' src/sort-expected.txt > $@ -check-sorting: src/sort-expected.txt src/sort-given.txt +check-unit-sorting: src/sort-expected.txt src/sort-given.txt diff -U10 src/sort-expected.txt src/sort-given.txt @@ -294,15 +294,15 @@ sources.links-check-internal = $(sources.adoc:.adoc=.links-check-internal) $(sources.links-check-internal): $(sources.html) grep '^link:' $*.links | cut -d: -f2- | xargs -I% test -e $(*D)/% -check-internal: $(sources.links-check-internal) +check-unit-internal: $(sources.links-check-internal) -check-external: +check-unit-external: -check-links: check-internal check-external +check-unit-links: check-unit-internal check-unit-external -check-unit: check-sorting check-links +check-unit: check-unit-sorting check-unit-links integration-tests = \ -- cgit v1.2.3