diff options
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile.PL b/Makefile.PL index b348a8f3..f138dffe 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -98,7 +98,7 @@ my $commonusername = "../common/"; # Additional targets sub postamble { <<"**MM**"; -.PHONY: installconfigfiles installstatedir ChangeLog +.PHONY: installconfigfiles installstatedir ChangeLog TAGS installpo: \$(MAKE) -C po install @@ -121,6 +121,14 @@ installgurpmi2: pure_install ChangeLog: svn2cl --accum --strip-prefix=soft/rpm/urpmi/trunk --authors ${commonusername}username.xml rm -f *.bak + +TAGS: + etags *.pm */*.pm + +testall: + make test + sudo make test TEST_FILES='t/superuser--*.t' + **MM** } |