modelbuilder: avoid multiple load of the same module
[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 doc/stdlib/index.html
20
21 docs: doc/stdlib/index.html doc/nitc/index.html doc/newmodel/index.html
22 #cd doc; make
23
24 tools:
25 cd src; make
26
27 bin/nitdoc:
28 cd src; make ../bin/nitdoc
29
30 doc/stdlib/index.html: bin/nitdoc
31 @echo '***************************************************************'
32 @echo '* Generate doc for NIT standard library *'
33 @echo '***************************************************************'
34 bin/nitdoc lib/*.nit $$(find lib/*/*.nit -maxdepth 0 -type f ) -d doc/stdlib \
35 --custom-title "Nit Standard Library" \
36 --custom-menu-items "<li><a href=\"http://nitlanguage.org/\">Nitlanguage.org</a></li>" \
37 --custom-overview-text "<p>Documentation for the standard library of Nit<br/>Version $$(git describe)<br/>Date: $$(git show --format="%cd" | head -1)</p>" \
38 --custom-footer-text "Nit standard library. Version $$(git describe)." \
39 --github nit \
40 --source "https://github.com/privat/nit/blob/$$(git show --format="%H" | head -1)/%f#L%l-%L"
41
42 doc/nitc/index.html: bin/nitdoc
43 bin/nitdoc src/nitc.nit src/nitdoc.nit src/nits.nit -d doc/nitc \
44 --custom-title "Nit Compiler and Tools" \
45 --custom-menu-items "<li><a href=\"http://nitlanguage.org/\">Nitlanguage.org</a></li>" \
46 --custom-overview-text "<p>Documentation for the Nit compiler and tools<br/>Version $$(git describe)<br/>Date: $$(git show --format="%cd" | head -1)</p>" \
47 --custom-footer-text "Nit compiler. Version $$(git describe)." \
48 --github nit \
49 --source "https://github.com/privat/nit/blob/$$(git show --format="%H" | head -1)/%f#L%l-%L"
50
51 doc/newmodel/index.html: bin/nitdoc
52 bin/nitdox src/nit.nit src/nitmetrics.nit src/nitg.nit src/nitx.nit src/nitunit.nit src/nitlight.nit src/ni_nitdoc.nit src/dbgcli.nit src/netdbg.nit -d doc/newmodel \
53 --custom-title "Nit New Model" \
54 --custom-menu-items "<li><a href=\"http://nitlanguage.org/\">Nitlanguage.org</a></li>" \
55 --custom-overview-text "<p>Documentation for the Nit tools based on the new metamodel<br/>Version $$(git describe)<br/>Date: $$(git show --format="%cd" | head -1)</p>" \
56 --custom-footer-text "Nit new metamodel. Version $$(git describe)." \
57 --github-origin "privat:nit:master" \
58 --source "https://github.com/privat/nit/blob/$$(git show --format="%H" | head -1)/%f#L%l-%L"
59
60 clean:
61 rm -rf -- .nit_compile 2> /dev/null || true
62 cd c_src; make clean
63 cd src; make clean
64 cd doc; make clean
65 cd tests; make clean
66
67 distclean: clean
68 rm -rf -- bin/nitc bin/nitdoc bin/nits doc/stdlib doc/nitc/ 2> /dev/null || true
69 cd c_src; make distclean
70 cd src/parser; make distclean
71 cd doc; make distclean
72 cd tests; make distclean