]> Dogcows Code - chaz/groupsecret/blob - Makefile
Release App-GroupSecret 0.302
[chaz/groupsecret] / Makefile
1
2 # This is not a Perl distribution, but it can build one using Dist::Zilla.
3
4 CPANM = cpanm
5 DZIL = dzil
6 PERL = perl
7 PROVE = prove
8
9 all: bootstrap dist
10
11 bootstrap:
12 $(CPANM) Dist::Zilla
13 $(DZIL) authordeps --missing | $(CPANM)
14 $(DZIL) listdeps --develop --missing | $(CPANM)
15
16 clean:
17 $(DZIL) $@
18
19 dist:
20 $(DZIL) build
21
22 test:
23 $(PROVE) -l
24
25 .PHONY: all bootstrap clean dist test
26
This page took 0.027859 seconds and 4 git commands to generate.