]> Dogcows Code - chaz/p5-File-KDBX/blob - Makefile
Initial commit
[chaz/p5-File-KDBX] / Makefile
1
2 # This is not a Perl distribution, but it can build one using Dist::Zilla.
3
4 CPANM = cpanm
5 COVER = cover
6 DZIL = dzil
7 PROVE = prove
8
9 .PHONY: all bootstrap clean cover dist test
10
11 all: bootstrap dist
12
13 bootstrap:
14 $(CPANM) Dist::Zilla
15 $(DZIL) authordeps --missing | $(CPANM)
16 $(DZIL) listdeps --develop --missing | $(CPANM)
17
18 clean:
19 $(DZIL) $@
20
21 cover:
22 $(COVER) -test
23
24 dist:
25 $(DZIL) build
26
27 test:
28 $(PROVE) -l $(if $(V),-v)
29
This page took 0.03302 seconds and 4 git commands to generate.