ni_nitdoc: added fast copy past utility to signatures.
[nit.git] / src / 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 ../bin/nits ../bin/nitmetrics ../bin/nitg ../bin/nit ../bin/nitx
20
21 ../bin/nitc: ../c_src/nitc parser/parser.nit
22 @echo '***************************************************************'
23 @echo '* Compile nitc from NIT source files *'
24 @echo '***************************************************************'
25 ./git-gen-version.sh
26 ../c_src/nitc ${NITCOPT} --clibdir ../c_src/clib -o ../bin/nitc -O -v nitc.nit
27
28 ../bin/nitdoc: ../bin/nitg
29 @echo '***************************************************************'
30 @echo '* Compile nitdoc from NIT source files *'
31 @echo '***************************************************************'
32 ./git-gen-version.sh
33 ../bin/nitg ${NITCOPT} -o ../bin/nitdoc -v nitdoc.nit
34
35 ../bin/nits: ../bin/nitg
36 @echo '***************************************************************'
37 @echo '* Compile nits from NIT source files *'
38 @echo '***************************************************************'
39 ./git-gen-version.sh
40 ../bin/nitg ${NITCOPT} -o ../bin/nits -v nits.nit
41
42 ../bin/nitmetrics: ../bin/nitg
43 @echo '***************************************************************'
44 @echo '* Compile nitmetrics from NIT source files *'
45 @echo '***************************************************************'
46 ./git-gen-version.sh
47 ../bin/nitg ${NITCOPT} -o ../bin/nitmetrics -v nitmetrics.nit
48
49 ../bin/nitg: ../bin/nitc
50 @echo '***************************************************************'
51 @echo '* Compile nitg from NIT source files *'
52 @echo '***************************************************************'
53 ./git-gen-version.sh
54 ../bin/nitc ${NITCOPT} -o ../bin/nitg -v nitg.nit
55
56 ../bin/nit: ../bin/nitg
57 @echo '***************************************************************'
58 @echo '* Compile nit from NIT source files *'
59 @echo '***************************************************************'
60 ./git-gen-version.sh
61 ../bin/nitg ${NITCOPT} -o ../bin/nit -v nit.nit
62
63 ../bin/nitx: ../bin/nitg
64 @echo '***************************************************************'
65 @echo '* Compile nitx from NIT source files *'
66 @echo '***************************************************************'
67 ./git-gen-version.sh
68 ../bin/nitg ${NITCOPT} -o ../bin/nitx -v nitx.nit
69
70 ../c_src/nitc: ../c_src/*.c ../c_src/*.h ../c_src/nitc._build.sh ../c_src/Makefile
71 @echo '***************************************************************'
72 @echo '* Compile nitc from C source files *'
73 @echo '***************************************************************'
74 cd ../c_src; make
75
76 parser/parser.nit:
77 @echo '***************************************************************'
78 @echo '* Generate nit parser *'
79 @echo '***************************************************************'
80 cd parser; make
81
82 clean:
83 rm -rf -- .nit_compile* nit_version.nit 2> /dev/null || true
84 cd parser; make clean
85
86 distclean: clean
87 cd parser; make distclean