-
Notifications
You must be signed in to change notification settings - Fork 11
/
Makefile
67 lines (52 loc) · 2.3 KB
/
Makefile
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
PY?=python
VENV?=venv
PELICAN?=pelican
PELICANOPTS=
BASEDIR=$(CURDIR)
INPUTDIR=$(BASEDIR)/content
OUTPUTDIR=$(BASEDIR)/output
CONFFILE=$(BASEDIR)/pelicanconf.py
PUBLISHCONF=$(BASEDIR)/publishconf.py
PY_VENV=. $(VENV)/bin/activate
DEBUG ?= 0
ifeq ($(DEBUG), 1)
PELICANOPTS += -D
endif
RELATIVE ?= 0
ifeq ($(RELATIVE), 1)
PELICANOPTS += --relative-urls
endif
help:
@echo 'Makefile for a pelican Web site '
@echo ' '
@echo 'Usage: '
@echo ' make install Install dependencies '
@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 watch serve and rebuild on changes '
@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: install
$(PY_VENV) && $(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
clean:
[ ! -d $(OUTPUTDIR) ] || rm -rf $(OUTPUTDIR)
regenerate: install
$(PY_VENV) && $(PELICAN) -r $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
watch: install
$(PY_VENV) && $(PELICAN) $(PELICANOPTS) --relative-urls --listen --autoreload -s $(CONFFILE) $(INPUTDIR) -o $(OUTPUTDIR)
publish: install
$(PY_VENV) && $(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(PUBLISHCONF) $(PELICANOPTS)
pelican-octopress-theme/.git: .gitmodules
git submodule update --init
submodules: pelican-octopress-theme/.git
$(VENV)/makestamp: requirements.txt
[ -d $(VENV) ] || $(PY) -m venv $(VENV)
$(PY_VENV) && pip install -r requirements.txt
touch $(VENV)/makestamp
venv: $(VENV)/makestamp
install: venv submodules
.PHONY: html help clean install regenerate watch publish venv submodules