This repository has been archived by the owner on Aug 29, 2024. It is now read-only.
forked from kfr2/kfr2.github.com
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
54 lines (42 loc) · 1.87 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
#PELICAN=setup_env.sh && pelican
PELICAN=pelican
PELICANOPTS=
BASEDIR=$(CURDIR)
INPUTDIR=$(BASEDIR)/content
OUTPUTDIR=$(BASEDIR)/output
CONFFILE=$(BASEDIR)/pelicanconf.py
PUBLISHCONF=$(BASEDIR)/publishconf.py
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 serve site at http://localhost:8000'
@echo ' make devserver start/restart develop_server.sh '
@echo ' github upload the web site via gh-pages '
@echo ' '
html: clean $(OUTPUTDIR)/index.html
cd pandoc-moderncv && $(MAKE) html
cp -rL pandoc-moderncv/dist output/cv
cd publications && $(MAKE)
cp -rL publications/publications output/publications
@echo 'Done'
$(OUTPUTDIR)/%.html:
$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
clean:
find $(OUTPUTDIR) -mindepth 1 -delete
regenerate: clean
$(PELICAN) -r $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
serve:
cd $(OUTPUTDIR) && python -m SimpleHTTPServer
devserver:
$(BASEDIR)/develop_server.sh restart
publish:
$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(PUBLISHCONF) $(PELICANOPTS)
github: publish
./ghp-import -m 'Update site at $(shell "date")' $(OUTPUTDIR)
git push origin master --force
.PHONY: html help clean regenerate serve devserver publish github