patinage/Makefile

10 lines
136 B
Makefile

PREFIX=/usr/local/patinage
TARGET=index.html
%.html: %.md
pandoc -s $^ -o $@
install: $(TARGET)
mkdir -p $(PREFIX)
cp $^ $(PREFIX)