public
Description:
Homepage:
Clone URL: git://github.com/robertkrimen/Getopt-Chain.git
Getopt-Chain / GNUmakefile
100644 26 lines (18 sloc) 0.395 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.PHONY: all test time clean distclean dist distcheck upload distupload
 
all: test
 
dist:
rm -rf inc META.y*ml
perl Makefile.PL
$(MAKE) -f Makefile dist
 
install distclean tardist: Makefile
$(MAKE) -f $< $@
 
test: Makefile
perl Makefile.PL
TEST_RELEASE=1 $(MAKE) -f $< $@
 
Makefile: Makefile.PL
perl $<
 
clean: distclean
 
reset: clean
rm -rf inc META.y*ml
perl Makefile.PL
$(MAKE) test