Skip to content

Commit

Permalink
rudimentary makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Fields committed Feb 21, 2010
1 parent af50e54 commit 1f9ad36
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Makefile
@@ -0,0 +1,20 @@
PERL6=<PERL6>
RAKUDO_DIR=<RAKUDO_DIR>
PERL6LIB='<PERL6LIB>:$(RAKUDO_DIR)'

SOURCES=lib/Bio/Root/Root.pm \
lib/Bio/RangeI.pm \
lib/Bio/Range.pm

PIRS=$(SOURCES:.pm=.pir)

all: $(PIRS)

%.pir: %.pm
env PERL6LIB=$(PERL6LIB) $(PERL6) --target=pir --output=$@ $<

clean:
rm -f $(PIRS)

test: all
env PERL6LIB=$(PERL6LIB) prove -e '$(PERL6)' -r --nocolor t/
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 1f9ad36

Please sign in to comment.