-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile
49 lines (38 loc) · 1.72 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
PELICAN=pelican
PELICANOPTS=
BASEDIR=$(CURDIR)
INPUTDIR=$(BASEDIR)/content
OUTPUTDIR=$(BASEDIR)/output
CONFFILE=$(BASEDIR)/pelicanconf.py
PUBLISHCONF=$(BASEDIR)/pelicanconf.py
GITHUB_REPOSITORY := $(or $(GITHUB_REPOSITORY), "desertpy/desertpy-pelican")
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 publish generate using production settings '
@echo ' make serve serve site at http://localhost:8000'
@echo ' make generate_meetup_posts generate meetup.com posts '
@echo ' github_upload upload the web site via gh-pages '
@echo ' '
html: clean $(OUTPUTDIR)/index.html
@echo 'Done'
$(OUTPUTDIR)/%.html:
$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)
clean:
find $(OUTPUTDIR) -mindepth 1 -delete
serve:
$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(PUBLISHCONF) --autoreload --listen $(PELICANOPTS)
generate_meetup_posts:
python generate_meetup_posts.py
publish:
$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(PUBLISHCONF) $(PELICANOPTS)
if [ $(GITHUB_REPOSITORY) = "desertpy/desertpy-pelican" ]; then\
cp CNAME $(OUTPUTDIR);\
fi
github_upload: publish
ghp-import $(OUTPUTDIR)
git push origin gh-pages
.PHONY: html help clean regenerate serve generate_meetup_posts publish github_upload