You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.8 KiB
84 lines
2.8 KiB
PY?=python3
|
|
PELICAN?=pelican
|
|
PELICANOPTS=
|
|
|
|
BASEDIR=$(CURDIR)
|
|
INPUTDIR=$(BASEDIR)/content
|
|
OUTPUTDIR=$(BASEDIR)/output
|
|
CONFFILE=$(BASEDIR)/pelicanconf.py
|
|
PUBLISHCONF=$(BASEDIR)/publishconf.py
|
|
|
|
|
|
DEBUG ?= 0
|
|
ifeq ($(DEBUG), 1)
|
|
PELICANOPTS += -D
|
|
endif
|
|
|
|
RELATIVE ?= 0
|
|
ifeq ($(RELATIVE), 1)
|
|
PELICANOPTS += --relative-urls
|
|
endif
|
|
|
|
SERVER ?= "0.0.0.0"
|
|
|
|
PORT ?= 0
|
|
ifneq ($(PORT), 0)
|
|
PELICANOPTS += -p $(PORT)
|
|
endif
|
|
|
|
|
|
help:
|
|
@echo 'Makefile for a pelican Web site '
|
|
@echo ' '
|
|
@echo 'Usage: '
|
|
@echo ' make html (re)generate the web site '
|
|
@echo ' make clean remove the generated files '
|
|
@echo ' make regenerate regenerate files upon modification '
|
|
@echo ' make publish generate using production settings '
|
|
@echo ' make serve [PORT=8000] serve site at http://localhost:8000'
|
|
@echo ' make serve-global [SERVER=0.0.0.0] serve (as root) to $(SERVER):80 '
|
|
@echo ' make devserver [PORT=8000] serve and regenerate together '
|
|
@echo ' make ssh_upload upload the web site via SSH '
|
|
@echo ' make rsync_upload upload the web site via rsync+ssh '
|
|
@echo ' '
|
|
@echo 'Set the DEBUG variable to 1 to enable debugging, e.g. make DEBUG=1 html '
|
|
@echo 'Set the RELATIVE variable to 1 to enable relative urls '
|
|
@echo ' '
|
|
|
|
html:
|
|
"$(PELICAN)" "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS)
|
|
|
|
clean:
|
|
[ ! -d "$(OUTPUTDIR)" ] || rm -rf "$(OUTPUTDIR)"
|
|
|
|
regenerate:
|
|
"$(PELICAN)" -r "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS)
|
|
|
|
serve:
|
|
"$(PELICAN)" -l "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS)
|
|
|
|
serve-global:
|
|
"$(PELICAN)" -l "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS) -b $(SERVER)
|
|
|
|
devserver:
|
|
"$(PELICAN)" -lr "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS)
|
|
|
|
devserver-global:
|
|
$(PELICAN) -lr $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS) -b 0.0.0.0
|
|
|
|
publish:
|
|
"$(PELICAN)" "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(PUBLISHCONF)" $(PELICANOPTS)
|
|
|
|
|
|
.PHONY: html help clean regenerate serve serve-global devserver publish
|
|
|
|
# Print
|
|
md=$(wildcard content/Essays/*.md)
|
|
md2pdf=$(md:%.md=%.pdf)
|
|
|
|
%.pdf: %.md themes/basic/static/css/print.css
|
|
pandoc --pdf-engine=weasyprint -c themes/basic/static/css/print.css $< -o $@
|
|
|
|
print: $(md2pdf)
|
|
$(shell mv content/Essays/*.pdf content/print/)
|
|
|
|
|