start makefile

This commit is contained in:
Rhiannon Morris 2020-07-14 07:10:33 +02:00
parent 4e605b69a1
commit b4a939f364
1 changed files with 34 additions and 0 deletions

34
Makefile Normal file
View File

@ -0,0 +1,34 @@
DATADIR = data
TMPDIR = _tmp
BUILDDIR = _build
# SMALL = thumbnails, MED = single pages (link to full size)
SMALL := 200
MED := 1200
MAKEPAGES = cabal -v0 run -- make-pages
ifneq ($(BUILDDIR),$(DATADIR))
$(BUILDDIR)/%: $(DATADIR)/%
cp $< $@
endif
$(BUILDDIR)/%_small.png: $(DATADIR)/%.png
mkdir -p $(dir $@)
convert -resize "$(SMALL)x$(SMALL)^" -gravity center -crop 1:1+0 $< $@
$(BUILDDIR)/%_med.png: $(DATADIR)/%.png
mkdir -p $(dir $@)
convert -resize "$(MED)x$(MED)>" $< $@
$(BUILDDIR)/%/index.html: $(DATADIR)/%/info.yaml
mkdir -p $(dir $@)
$(MAKEPAGES) single $< -o $@
$(BUILDDIR)/nsfw/%/index.html: $(DATADIR)/%/info.yaml
mkdir -p $(dir $@)
$(MAKEPAGES) single $< -o $@ -n
.PHONY: clean
clean:
$(RM) -r $(BUILDDIR)