masak / web

A Perl 6 web framework

This URL has Read+Write access

masak (author)
Sun Nov 08 10:47:56 -0800 2009
commit  561b936620df6583f664bbea678ef7d370279792
tree    307e3b867019037a7bf6b9e6a974f2778db2f551
parent  5ac5ae03d196b2583cc3629388b69c2e5c83d27e
web / Makefile.in
100644 25 lines (18 sloc) 0.508 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
PERL6=<PERL6>
RAKUDO_DIR=<RAKUDO_DIR>
PERL6LIB='<PERL6LIB>:$(RAKUDO_DIR)'
 
SOURCES=lib/Routes.pm lib/Routes/Route.pm \
lib/Tags.pm lib/Test.pm \
lib/Web/Nibbler.pm \
lib/Web/Utils.pm \
lib/Web/Request.pm lib/Web/Response.pm \
    lib/Web/Handler/HTTPDaemon.pm \
lib/Astaire.pm lib/Squerl.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/