8 lines
419 B
Makefile
8 lines
419 B
Makefile
hello:
|
|
echo "Hello Nico"
|
|
|
|
build:
|
|
cp -r . /home/nico/.local/share/containers/storage/volumes/kanzelei/_data/
|
|
podman run --rm --volume "kanzelei:/data" pandoc/latex --toc --toc-depth=1 --epub-metadata=metadata.yaml --css=book.css -o myebook.epub --css book.css --toc -N -o build/output.epub src/title.txt src/*.md
|
|
cd /home/nico/.local/share/containers/storage/volumes/kanzelei/_data/ && rm -rf *
|