Merge: doc: fixed some typos and other misc. corrections
[nit.git] / share / man / Makefile
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 IN=$(wildcard nit*.md)
16 OUT=$(patsubst %.md,man1/%.1,$(IN))
17
18 MARKDOWN=../../lib/markdown
19 NITMD=$(MARKDOWN)/bin/nitmd
20
21 all: $(OUT)
22
23
24 man1/%.1: %.md $(NITMD)
25 mkdir -p man1
26 echo ".TH $* 1" > $@
27 $(NITMD) $< -t man >> $@
28
29
30 $(NITMD):
31 $(MAKE) -C $(MARKDOWN)
32
33 # Rule to produce mdwn files for ikiwiki that will be used at http://nitlanguage.org/tools/
34 web:
35 rm -r www 2>/dev/null || true
36 mkdir -p www
37 cp nit*.md www
38 rename '$$_ = "$${_}wn"' www/*.md
39 sed -i -e '/SEE ALSO/,$$d' www/*.mdwn
40
41 publish: web
42 rsync www/* asimov:wiki/nitlanguage/doc/tools/
43 ssh asimov make -C wiki/nitlanguage
44
45 pdf:
46 mkdir -p pdf.out
47 for x in nit*.md; do echo $$x; pandoc -V header-includes='\usepackage{savetrees}' $$x -o pdf.out/$$x.pdf; done
48 pdfjoin pdf.out/*.pdf -o man.pdf
49
50 clean:
51 rm -r www pdf.out || true