diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2022-02-23 02:38:25 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2022-02-23 21:23:57 +0100 |
commit | 448760457c85b80eef23b7c1ede8c735e4491b98 (patch) | |
tree | 12a64c80f1bc3a633cac6921a4f47c370f8bb634 /Makefile | |
parent | b5f3eeaf83d68c64ee508624afa5b76c14907e15 (diff) |
Makefile: Rename 'test' target to 'check'.
Per convention, cf. https://www.gnu.org/prep/standards/html_node/Standard-Targets.html .
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -39,7 +39,7 @@ $(SERVICE_FILES): $(builddir)/%.service: $(srcdir)/%.service @mkdir -vp $(dir $@) sed "s|@bindir@|$(bindir)|" <"$<" >"$@" -test: +check: $(PROGRAMS) $(srcdir)/tests/certs/generate INTERIMAP_I=$(srcdir)/lib INTERIMAP_PATH=$(builddir) $(srcdir)/tests/run-all @@ -97,4 +97,4 @@ clean: rm -vf -- $(PROGRAMS) $(MANUAL_FILES) $(HTML_FILES) $(SERVICE_FILES) -rmdir -vp --ignore-fail-on-non-empty -- $(builddir)/doc -.PHONY: all all-nodoc manual html doc test release install uninstall clean +.PHONY: all all-nodoc manual html doc check release install uninstall clean |