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$@ $<