[go: up one dir, main page]

Menu

[r1]: / trunk / funroll / Makefile  Maximize  Restore  History

Download this file

12 lines (8 with data), 481 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
SOURCES=Config.pm Directory.pm Page.pm Resize.pm Simple/Directory.pm Simple/Index.pm Simple/SlideShow.pm
DEST=Config.pmc Directory.pmc Page.pmc Resize.pmc Simple/Directory.pmc Simple/Index.pmc Simple/SlideShow.pmc
all: $(DEST)
@echo "You don't have to run make. This only 'precompiles' the perl modules into bytecodes. This might lead to fuss loading marginally faster, at the expence of some 100kb disk space."
clean:
rm -f $(DEST)
%.pmc : %.pm
perl -MO=Bytecode,-H,-o$@ $<