-
Notifications
You must be signed in to change notification settings - Fork 358
/
Makefile
65 lines (53 loc) · 2.21 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
PY=python3
PIP=pip3
HUGO=hugo
BASEDIR=$(CURDIR)
INPUTDIR=$(BASEDIR)/content
OUTPUTDIR=$(BASEDIR)/public
TOOLSDIR=$(BASEDIR)/tools
BASEURL=https://xmpp.org/
BUILDFUTURE=""
FTP_HOST=localhost
FTP_USER=anonymous
FTP_TARGET_DIR=/
SSH_HOST=localhost
SSH_PORT=22
SSH_USER=root
SSH_TARGET_DIR=/var/www
help:
@echo 'Makefile for xmpp.org '
@echo ' '
@echo 'Usage: '
@echo ' make clean remove the generated files '
@echo ' make serve serve site at http://localhost:1313'
@echo ' make publish generate using production settings '
@echo ' make ssh_upload upload the web site via SSH '
@echo ' make rsync_upload upload the web site via rsync+ssh '
@echo ' make ftp_upload upload the web site via FTP '
@echo ' '
clean:
[ ! -d $(OUTPUTDIR) ] || rm -rf $(OUTPUTDIR)
serve:
$(PIP) install --upgrade -r $(TOOLSDIR)/requirements.txt
$(PY) $(TOOLSDIR)/prepare_xep_list.py
$(PY) $(TOOLSDIR)/prepare_rfc_list.py
$(PY) $(TOOLSDIR)/prepare_software_list.py
$(PY) $(TOOLSDIR)/prepare_compliance.py
$(HUGO) version
$(HUGO) server --bind=0.0.0.0 --baseURL="http://localhost/" --buildFuture
publish:
$(PIP) install --upgrade -r $(TOOLSDIR)/requirements.txt
$(PY) $(TOOLSDIR)/prepare_xep_list.py
$(PY) $(TOOLSDIR)/prepare_rfc_list.py
$(PY) $(TOOLSDIR)/lint_software_list.py software.json
$(PY) $(TOOLSDIR)/prepare_software_list.py
$(PY) $(TOOLSDIR)/prepare_compliance.py
$(HUGO) version
$(HUGO) --baseURL=$(BASEURL) $(BUILDFUTURE)
ssh_upload: publish
scp -P $(SSH_PORT) -r $(OUTPUTDIR)/* $(SSH_USER)@$(SSH_HOST):$(SSH_TARGET_DIR)
rsync_upload: publish
rsync -e "ssh -p $(SSH_PORT)" -P -rvz --delete $(OUTPUTDIR)/ $(SSH_USER)@$(SSH_HOST):$(SSH_TARGET_DIR) --cvs-exclude
ftp_upload: publish
lftp ftp://$(FTP_USER)@$(FTP_HOST) -e "mirror -R $(OUTPUTDIR) $(FTP_TARGET_DIR) ; quit"
.PHONY: help clean serve publish ssh_upload rsync_upload ftp_upload