summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gratz <Stromeko@Stromeko.DE>2012-02-14 19:36:59 +0100
committerAchim Gratz <Stromeko@Stromeko.DE>2012-04-20 21:04:13 +0200
commit035f24673b2170c284859479aabb588f0330f8bc (patch)
tree5b4a2d439da39c0b97413f2551c975dda3051791
parent353a0c519bae0fce277de48adc8cf582d986b7e0 (diff)
downloadorg-mode-035f24673b2170c284859479aabb588f0330f8bc.tar.gz
introduce "check" as alias for "test" to comply with GNU Makefile conventions
Makefile: change test to check in help text targets.mk: add check as alias for test
-rw-r--r--Makefile2
-rw-r--r--targets.mk6
2 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 7e82e4a..7870736 100644
--- a/Makefile
+++ b/Makefile
@@ -26,7 +26,7 @@ targets help:
$(info make pdf - make pdf documentation)
$(info make card - make refcards documentation)
$(info )
- $(info make test - build org and run all test suite)
+ $(info make check - build org and run complete test suite)
$(info make clean - clean Org ELisp and documentation files)
$(info make compile - cleanly compile Org ELisp files)
$(info make compile-dirty - compile Org ELisp without cleaning)
diff --git a/targets.mk b/targets.mk
index d33e98c..fe283a5 100644
--- a/targets.mk
+++ b/targets.mk
@@ -21,7 +21,7 @@ ifneq ($(GITSTATUS),)
endif
.PHONY: default all up2 update compile lisp doc etc \
- test install info html pdf card docs $(INSTSUB) \
+ check test install info html pdf card docs $(INSTSUB) \
autoloads cleanall clean cleancontrib cleanrel clean-install \
cleanelc cleanlisp cleandoc cleandocs
@@ -37,9 +37,9 @@ all \
clean-install:: $(SUBDIRS)
$(foreach dir, $?, $(MAKE) -C $(dir) $@;)
-test:: all
+check test:: all
-test \
+check test \
test-dirty::
$(BTEST)