misc/vim: inform the user when no results are found
[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 all: $(OUT)
19
20 man1/%.1: %.md
21 mkdir -p man1
22 pandoc $< -t man -s -o $@
23
24 # Rule to produce mdwn files for ikiwiki that will be used at http://nitlanguage.org/tools/
25 web:
26 rm -r www 2>/dev/null || true
27 mkdir -p www
28 cp nit*.md www
29 rename '$$_ = "$${_}wn"' www/*.md
30 sed -i -e '1d;/SEE ALSO/,$$d' www/*.mdwn
31
32 publish: web
33 rsync www/* asimov:wiki/nitlanguage/doc/tools/
34 ssh asimov make -C wiki/nitlanguage
35
36 pdf:
37 mkdir -p pdf.out
38 for x in nit*.md; do echo $$x; pandoc -V header-includes='\usepackage{savetrees}' $$x -o pdf.out/$$x.pdf; done
39 pdfjoin pdf.out/*.pdf -o man.pdf
40
41 clean:
42 rm -r www pdf.out || true