doc: do not make the stdlib doc by default
[nit.git] / Makefile
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2008 Jean Privat <jean@pryen.org>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 NITCOPT=
18
19 all: tools
20
21 docs: doc/stdlib/index.html doc/nitc/index.html
22
23 tools:
24 cd src; make
25
26 bin/nitdoc:
27 cd src; make ../bin/nitdoc
28
29 bin/nitls:
30 cd src; make ../bin/nitls
31
32 doc/stdlib/index.html: bin/nitdoc bin/nitls
33 @echo '***************************************************************'
34 @echo '* Generate doc for NIT standard library *'
35 @echo '***************************************************************'
36 bin/nitdoc $$(bin/nitls lib -r --path) -d doc/stdlib \
37 --custom-title "Nit Standard Library" \
38 --custom-brand "<a href=\"http://nitlanguage.org/\">Nitlanguage.org</a>" \
39 --custom-overview-text "<p>Documentation for the standard library of Nit<br/>Version $$(git describe)<br/>Date: $$(git show --format="%cd" | head -1)</p>" \
40 --custom-footer-text "Nit standard library. Version $$(git describe)." \
41 --github-upstream "privat:nit:master" \
42 --github-base-sha1 "$$(git rev-parse HEAD)" \
43 --github-gitdir "." \
44 --source "https://github.com/privat/nit/blob/$$(git rev-parse HEAD)/%f#L%l-%L" \
45 --piwik-tracker "pratchett.info.uqam.ca/piwik/" \
46 --piwik-site-id "2" \
47
48 doc/nitc/index.html: bin/nitdoc
49 bin/nitdoc $$(bin/nitls lib -r --path) src/nit*.nit src/test_*.nit -d doc/nitc \
50 --private \
51 --custom-title "Nit Compilers and Tools" \
52 --custom-brand "<a href=\"http://nitlanguage.org/\">Nitlanguage.org</a>" \
53 --custom-overview-text "<p>Documentation for the Nit tools<br/>Version $$(git describe)<br/>Date: $$(git show --format="%cd" | head -1)</p>" \
54 --custom-footer-text "Nit tools. Version $$(git describe)." \
55 --github-upstream "privat:nit:master" \
56 --github-base-sha1 "$$(git rev-parse HEAD)" \
57 --github-gitdir "." \
58 --source "https://github.com/privat/nit/blob/$$(git rev-parse HEAD)/%f#L%l-%L" \
59 --piwik-tracker "pratchett.info.uqam.ca/piwik/" \
60 --piwik-site-id "3"
61
62 clean:
63 rm -rf -- .nit_compile 2> /dev/null || true
64 cd c_src; make clean
65 cd src; make clean
66 cd doc; make clean
67 cd tests; make clean
68
69 distclean: clean
70 rm -rf -- bin/nitdoc bin/nits doc/stdlib 2> /dev/null || true
71 cd c_src; make distclean
72 cd src/parser; make distclean
73 cd doc; make distclean
74 cd tests; make distclean