forked from ocaml/v2.ocaml.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
87 lines (70 loc) · 2.79 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
HEADACHE = headache -c _headache.conf
local: script/relative_urls
$(MAKE) staging SET_STAGING='-set staging'
find ocaml.org -type f | while read f; do \
script/relative_urls --path ocaml.org "$$f"; done
production: pre-build
$(MAKE) gen_md gen_html
$(MAKE) syncotherfiles
$(RM) ocaml.org/robots.txt
staging: pre-build
$(MAKE) gen_md gen_html SET_STAGING='-set staging'
$(MAKE) syncotherfiles
# Pattern for directories containing the reference manuals
# and other release material
MANUAL_DIRS=site/releases/[1-9].[0-9][0-9]
syncotherfiles:
rsync --exclude '*~' --exclude '*.md' --exclude '*.html' \
--exclude '*.cmi' --exclude '*.cmo' --exclude '*.annot' \
-rltHprogv site/* ocaml.org/
if test -d ../ocaml.org-media; then \
rsync --exclude '*~' --exclude '*.md' \
--exclude '*.cmi' --exclude '*.cmo' --exclude '*.annot' \
-rltHprogv ../ocaml.org-media/* ocaml.org/ ; fi
rsync -a --delete $(MANUAL_DIRS) ocaml.org/releases/
deps:
opam pin add ocamlorg . --no-action --yes --kind=path
opam depext ocamlorg
opam install ocamlorg --deps-only
# This target is PHONY (see end) because we don't want to enumerate
# all the dependents that invalidate the resulting
# opam.ocaml.org/template.xhtml for fear of that enumeration being
# incomplete or falling out of date. That is, we treat ocaml.org's
# page generation process as a black box here and suffer no noticeable
# performance degradation.
opam.ocaml.org_template:
$(MAKE) -f Makefile.opam.ocaml.org
# List of files to build, sorted according to their source format
MD_FILES = $(patsubst site/%, ocaml.org/%, $(patsubst %.md, %.html, \
$(shell find site \( -type f -o -type l \) -name '*.md' -print)))
HTML_FILES = $(patsubst site/%, ocaml.org/%, \
$(shell find site -type d -wholename '$(MANUAL_DIRS)' -prune \
-o -type f -name '*.html' -print))
feed: ocaml.org/feed.xml ocaml.org/opml.xml
ocaml.org/feed.xml: script/rss2html
mkdir -p $(basename $@)
./$< -n 50 --aggregate $@
ocaml.org/opml.xml: script/rss2html ocaml.org/feed.xml
mkdir -p $(basename $@)
./$< --opml $@
gen_md: feed
@$(MAKE) -f Makefile.from_md $(MD_FILES)
gen_html: feed
@$(MAKE) -f Makefile.from_html $(HTML_FILES)
headache:
find site/ \! -name '*.js' \! -name '*.css' -type f \
| xargs $(HEADACHE) -h _header_content
find script/ -type f \! -perm /0100 \
| xargs $(HEADACHE) -h _header_scripts
find Makefile* -type f \
| xargs $(HEADACHE) -h _header_scripts
find site/ -name '*.css' -type f \
| xargs $(HEADACHE) -h _header_design
clean:
$(RM) -r ocaml.org *~ *.cmo *.cmi *.cma *.o
$(RM) opam.ocaml.org/template.xhtml
$(RM) $(TRASH)
$(RM) $(addprefix script/, *~ *.annot *.cmo *.cmi *.cma *.cmx *.o)
include Makefile.common
.PHONY: production local staging opam.ocaml.org_template \
syncotherfiles deps feed gen_md gen_html headache clean