ttrpg/Makefile
2023-06-26 08:41:37 +00:00

25 lines
440 B
Makefile

# Update this for new files
files = perks.html spelllist.html main.html creatures.html\
magical_items.html calc.html effect.html\
test.html test.js\
license.html tes.css UESP-Parchment_Background.jpg
OUTDIR=html
LIST=$(addprefix html/, $(files))
$(OUTDIR)/%.html: %.md | $(OUTDIR)
pandoc $< -f markdown -t html -s -o $@
$(OUTDIR)/%: % | $(OUTDIR)
cp $< $@
all: $(LIST)
$(OUTDIR):
mkdir -p $(OUTDIR)
clean:
rm -r $(OUTDIR)