blob: 8c5c6b64905a6111ea94fe9281a20652977dfd69 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
HERE := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
# Sample settings, tweak for particular jobs on make command line or
# via environment variables.
SOURCE_URL := https://git.cryptech.is/
SOURCE_TRAC_DB := bikeshed.cryptech.is:/home/trac/db/trac.db
SOURCE_TRAC_ATTACHMENTS := bikeshed.cryptech.is:/home/trac/files/attachments
all:
${HERE}/extract.py --source-url ${SOURCE_URL}
cd pelican; pelican --output website --settings pelicanconf.py --fatal errors content
fetch:
rsync -aP --delete ${SOURCE_TRAC_DB} ${SOURCE_TRAC_ATTACHMENTS} .
clean:
rm -rf wiki pelican
distclean: clean
rm -rf trac.db attachments
webfsd:
webfsd -r pelican/website -4 -L - -F -f index.html
.PHONY: all clean fetch distclean webfsd
|