]> Dogcows Code - chaz/p5-Return-Type-Lexical/blob - Makefile
Release Return-Type-Lexical 0.002
[chaz/p5-Return-Type-Lexical] / Makefile
1
2 # This is not a Perl distribution, but it can build one using Dist::Zilla.
3
4 COVER = cover
5 CPANM = cpanm
6 DZIL = dzil
7 PERL = perl
8 PROVE = prove
9
10 all: dist
11
12 bootstrap:
13 $(CPANM) $(CPANM_FLAGS) -n Dist::Zilla
14 $(DZIL) authordeps --missing |$(CPANM) $(CPANM_FLAGS) -n
15 $(DZIL) listdeps --develop --missing |$(CPANM) $(CPANM_FLAGS) -n
16
17 clean:
18 $(DZIL) $@
19
20 cover:
21 $(COVER) -test
22
23 dist:
24 $(DZIL) build
25
26 distclean: clean
27 rm -rf cover_db
28
29 test:
30 $(PROVE) -l$(if $(findstring 1,$(V)),v) t
31
32 .PHONY: all bootstrap clean cover dist distclean test
33
This page took 0.030861 seconds and 4 git commands to generate.