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
This commit is contained in:
Achim Gratz 2012-02-14 19:36:59 +01:00
parent 353a0c519b
commit 035f24673b
2 changed files with 4 additions and 4 deletions

View File

@ -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)

View File

@ -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)