public
Description:
Homepage:
Clone URL: git://github.com/robertkrimen/moosex-scaffold.git
moosex-scaffold / GNUmakefile
100644 24 lines (16 sloc) 0.322 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
.PHONY: all test clean distclean dist
 
all: test
 
dist:
rm -rf inc META.y*ml
perl Makefile.PL
$(MAKE) -f Makefile dist
 
install distclean tardist: Makefile
$(MAKE) -f $< $@
 
test: Makefile
TEST_RELEASE=1 $(MAKE) -f $< $@
 
Makefile: Makefile.PL
perl $<
 
clean: distclean
 
reset: clean
perl Makefile.PL
$(MAKE) test