]> git.donarmstrong.com Git - debbugs.git/blobdiff - Makefile
default charset to UTF-8 when it isn't defined
[debbugs.git] / Makefile
index df174b82fef57881c5de12f59308b095ec0e1303..587670406b9eb7578055036259ac1741152e58e5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -31,9 +31,15 @@ build:
        $(PERL) Makefile.PL
        $(MAKE) -f Makefile.perl
 
-test: build
+test:
        $(PERL) -MTest::Harness -I. -e 'runtests(glob(q(t/*.t)))'
 
+test_%: t/%.t
+       $(PERL) -MTest::Harness -I. -e 'runtests(q($<))'
+
+testcover:
+       PERLLIB=t/cover_lib/ cover -test
+
 clean:
        if [ -e Makefile.perl ]; then \
                $(MAKE) -f Makefile.perl clean; \
@@ -99,8 +105,8 @@ $(var_dir)/spool/db-h $(scripts_dir) $(examples_dir) $(man8_dir); \
        $(install_data) misc/updateseqs $(var_dir)/spool
 
        # install the templates
-       $(foreach dir, $(wildcard templates/*/*), $(exec -d $(install_exec) $(template_dir)/$(patsubst templates/%,%,$(dir))))
-       $(foreach tmpl, $(wildcard templates/*/*/*.tmpl), $(exec $(install_data) $(tmpl) $(template_dir)/$(patsubst templates/%,%,$(tmpl))))
+       $(foreach dir, $(wildcard templates/*/*), $(install_exec) -d $(templates_dir)/$(patsubst templates/%,%,$(dir));)
+       $(foreach tmpl, $(wildcard templates/*/*/*.tmpl), $(install_data) $(tmpl) $(templates_dir)/$(patsubst templates/%,%,$(tmpl));)
 
 
-.PHONY: test build
\ No newline at end of file
+.PHONY: test build