Archived
1
0

Add Makefile to deploy

This commit is contained in:
Mercier Pierre-Olivier 2013-09-09 13:51:53 +02:00
parent 0fc6ae8a75
commit b27e8e45ae

19
Makefile Normal file
View File

@ -0,0 +1,19 @@
COPY=cp -v
DEST=/usr/local/share/perl/`ls -1 /usr/lib/perl/ | tail -1`/
MAKEDIR=mkdir
PROVER=prove -f
RM=rm
TESTDIR=t
install:
$(MAKEDIR) -p $(DEST)
$(COPY) -r ACU/ $(DEST)
unstall:
$(RM) -r $(DEST)/ACU/
test:
$(PROVER) $(TESTDIR)
testv:
$(PROVER) -v $(TESTDIR)