tools: clean Makefiles
[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
22 cd doc; make
23
24 tools:
25 cd src; make
26
27 doc/stdlib/index.html: tools
28 @echo '***************************************************************'
29 @echo '* Generate doc for NIT standard library *'
30 @echo '***************************************************************'
31 bin/nitdoc lib/*.nit -d doc/stdlib --public --overview-text '<p>Documentation for the standard library of Nit</p>' --footer-text 'Nit standard library. Version '`git describe -- lib`'.'
32
33 doc/nitc/index.html: tools
34 bin/nitdoc src/nitc.nit src/nitdoc.nit -d doc/nitc --overview-text '<p>Documentation for the nit compiler</p>' --footer-text 'Nit compiler. Version '`git describe`'.'
35
36 clean:
37 rm -rf -- .nit_compile 2> /dev/null || true
38 cd c_src; make clean
39 cd src; make clean
40 cd doc; make clean
41 cd tests; make clean
42
43 distclean: clean
44 rm -rf -- bin/nitc bin/nitdoc bin/nits doc/stdlib doc/nitc/ 2> /dev/null || true
45 cd c_src; make distclean
46 cd src/parser; make distclean
47 cd doc; make distclean
48 cd tests; make distclean