15 lines
331 B
Makefile
15 lines
331 B
Makefile
all: pull index
|
|
|
|
init:
|
|
pppadump init
|
|
mkdir out
|
|
|
|
pull:
|
|
pppadump pull --all --force --css ../styles.css --pub out/p --group out/g
|
|
|
|
index:
|
|
cp styles/styles.css out/
|
|
pppadump index input out/p/*.meta.json --title "Notes, __MAGICWORDS__, readers & more ..." --templatepath templates/ --output out/index.html
|
|
|
|
clean:
|
|
rm -Rf out/
|