Archived
1
0
Fork 0
This repository has been archived on 2021-10-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ACU/Makefile
Mercier Pierre-Olivier b27e8e45ae Add Makefile to deploy
2013-09-09 13:51:53 +02:00

19 lines
271 B
Makefile

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)