diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-09-12 14:41:41 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-09-12 14:41:41 -0700 |
commit | 100ce1c543b8e9961ed59c047b902da1dd649666 (patch) | |
tree | 41b16b5ca4c390f2109707cd234e62d6c3f9f339 /contrib/mw-to-git/Makefile | |
parent | Merge branch 'jc/commit-is-spelled-with-two-ems' (diff) | |
parent | git-remote-mediawiki: no need to update private ref in non-dumb push (diff) | |
download | tgif-100ce1c543b8e9961ed59c047b902da1dd649666.tar.xz |
Merge branch 'mm/mediawiki-dumb-push-fix'
* mm/mediawiki-dumb-push-fix:
git-remote-mediawiki: no need to update private ref in non-dumb push
git-remote-mediawiki: use no-private-update capability on dumb push
transport-helper: add no-private-update capability
git-remote-mediawiki: add test and check Makefile targets
Diffstat (limited to 'contrib/mw-to-git/Makefile')
-rw-r--r-- | contrib/mw-to-git/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
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 |