]> git.donarmstrong.com Git - bugscan.git/blob - Makefile
add wheezy ignore test
[bugscan.git] / Makefile
1 PERL ?= /usr/bin/perl
2
3 test:
4         $(PERL) -MTest::Harness -I. -e 'runtests(glob(q(t/*.t)))'
5
6 test_%: t/%.t
7         $(PERL) -MTest::Harness -I. -e 'runtests(q($<))'
8
9 html:
10         ./dohtml
11
12 graph:
13         ./dograph
14
15 post:
16         ./dopost
17
18 status:
19         ./dostatus
20
21 rescan:
22         ./crontab
23
24 .PHONY: html graph post status rescan test