diff options
author | EuAndreh <eu@euandre.org> | 2025-04-06 13:29:45 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-04-06 13:30:08 -0300 |
commit | 8d5990cc6045f21622df15820c7716f2388d3cf8 (patch) | |
tree | 02dd27d65f48c3e5177aee93b769564baa53047b /Makefile | |
parent | Makefile: Less verbose on xargs (diff) | |
download | euandre.org-8d5990cc6045f21622df15820c7716f2388d3cf8.tar.gz euandre.org-8d5990cc6045f21622df15820c7716f2388d3cf8.tar.xz |
Makefile: Prefix unit-test targets with "check-unit"
Diffstat (limited to '')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 = \ |