misc: update Changelog and NOTICE; remove BUGS and TODO
[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: bin/nitc bin/nitdoc doc/stdlib/index.html
20
21 bin/nitc: c_src/nitc src/parser/parser.nit
22 @echo '***************************************************************'
23 @echo '* Compile nitc from NIT source files *'
24 @echo '***************************************************************'
25 mkdir .nit_compile 2> /dev/null || true
26 cp c_src/*.o c_src/*.cksum .nit_compile
27 src/git-gen-version.sh
28 c_src/nitc ${NITCOPT} --clibdir c_src/clib -o bin/nitc -O src/nitc.nit
29
30 bin/nitdoc: bin/nitc
31 @echo '***************************************************************'
32 @echo '* Compile nitdoc from NIT source files *'
33 @echo '***************************************************************'
34 src/git-gen-version.sh
35 bin/nitc ${NITCOPT} -o bin/nitdoc -O src/nitdoc.nit
36
37 doc/stdlib/index.html: bin/nitdoc
38 @echo '***************************************************************'
39 @echo '* Generate doc for NIT standard library *'
40 @echo '***************************************************************'
41 bin/nitdoc lib/*.nit -d doc/stdlib
42
43 c_src/nitc: c_src/*.c c_src/*.h c_src/nitc._build.sh c_src/Makefile
44 @echo '***************************************************************'
45 @echo '* Compile nitc from C source files *'
46 @echo '***************************************************************'
47 cd c_src; make
48
49 src/parser/parser.nit:
50 @echo '***************************************************************'
51 @echo '* Generate nit parser *'
52 @echo '***************************************************************'
53 cd src/parser; make
54
55 clean:
56 rm -rf -- .nit_compile 2> /dev/null || true
57 cd c_src; make clean
58 cd src/parser; make clean
59 cd tests; make clean
60
61 dist-clean: clean
62 cd c_src; make dist-clean
63 cd src/parser; make dist-clean
64 rm -rf -- bin/nitc bin/nitdoc doc/stdlib
65