mattw / form

A Perl 6 implementation of Perl 6-style text formatting

This URL has Read+Write access

form / Makefile.in
100644 21 lines (12 sloc) 0.362 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
RAKUDO=<RAKUDO>
 
PERL6LIB=lib/
 
SOURCES=lib/Test.pm lib/Form/Actions.pm lib/Form/Grammar.pm lib/Form/TextFormatting.pm lib/Form/Field.pm lib/Form.pm
 
PIRS=$(SOURCES:.pm=.pir)
 
all: $(PIRS)
 
%.pir: %.pm
PERL6LIB=$(PERL6LIB) $(RAKUDO) --target=pir --output=$@ $<
 
clean:
rm -f $(PIRS)
 
tests: test
 
test: all
PERL6LIB=$(PERL6LIB) prove --perl '$(RAKUDO)' -r t/