ttrpg/Makefile

25 lines
440 B
Makefile
Raw Normal View History

2023-06-24 16:42:19 -05:00
# Update this for new files
files = perks.html spelllist.html main.html creatures.html\
magical_items.html calc.html effect.html\
2023-06-26 03:41:37 -05:00
test.html test.js\
license.html tes.css UESP-Parchment_Background.jpg
2023-06-24 16:42:19 -05:00
OUTDIR=html
LIST=$(addprefix html/, $(files))
$(OUTDIR)/%.html: %.md | $(OUTDIR)
2022-09-14 18:44:58 -05:00
pandoc $< -f markdown -t html -s -o $@
2023-06-26 03:41:37 -05:00
$(OUTDIR)/%: % | $(OUTDIR)
2023-06-24 16:42:19 -05:00
cp $< $@
all: $(LIST)
$(OUTDIR):
mkdir -p $(OUTDIR)
2022-09-14 18:44:58 -05:00
2023-06-24 16:42:19 -05:00
clean:
rm -r $(OUTDIR)