Add Makefile to deploy
This commit is contained in:
parent
0fc6ae8a75
commit
b27e8e45ae
19
Makefile
Normal file
19
Makefile
Normal 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)
|
Reference in New Issue
Block a user