From: Matthieu Moy Date: Thu, 29 Aug 2013 18:58:21 +0000 (+0200) Subject: git-remote-mediawiki: add test and check Makefile targets X-Git-Tag: v1.8.5-rc0~143^2~3 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/8987cda9e1e1c36e5d0a9be6d371697e50773856?ds=inline;hp=--cc git-remote-mediawiki: add test and check Makefile targets There are a few level 4 and 2 perlcritic issues in the current code. We make level 5 fatal, and keep level 2 as warnings. Signed-off-by: Matthieu Moy Signed-off-by: Junio C Hamano --- 8987cda9e1e1c36e5d0a9be6d371697e50773856 diff --git a/contrib/mw-to-git/Makefile b/contrib/mw-to-git/Makefile index 76fcd4defc..f206f9655b 100644 --- a/contrib/mw-to-git/Makefile +++ b/contrib/mw-to-git/Makefile @@ -24,6 +24,11 @@ INSTLIBDIR=$(shell $(MAKE) -C $(GIT_ROOT_DIR)/perl \ all: build +test: all + $(MAKE) -C t + +check: perlcritic test + install_pm: install $(GIT_MEDIAWIKI_PM) $(INSTLIBDIR)/$(GIT_MEDIAWIKI_PM) @@ -41,4 +46,7 @@ clean: rm $(INSTLIBDIR)/$(GIT_MEDIAWIKI_PM) perlcritic: - perlcritic -2 *.perl + perlcritic -5 $(SCRIPT_PERL) + -perlcritic -2 $(SCRIPT_PERL) + +.PHONY: all test check install_pm install clean perlcritic