]> Dogcows Code - chaz/graphql-client/blob - Makefile
add a few more fixups before release
[chaz/graphql-client] / 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 .build cover_db fatlib
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.034805 seconds and 5 git commands to generate.