neo_doxygen: Remove references to `nitg`.
[nit.git] / contrib / neo_doxygen / Makefile
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 NITC=../../bin/nitc
16 NITC_FLAGS=--dir bin
17 NEO4J_DIR=/var/lib/neo4j
18 OLD_PWD=${PWD}
19
20 .PHONY: bin reset-neo run-tests tests
21
22 # Compile the tool.
23 bin:
24 mkdir -p bin
25 $(NITC) $(NITC_FLAGS) src/neo_doxygen.nit
26
27 # Reset the local graph.
28 reset-neo:
29 sudo -u neo4j "${NEO4J_DIR}/bin/neo4j" stop \
30 && sudo -u neo4j rm -rf "${NEO4J_DIR}/data/graph.db" \
31 && sudo -u neo4j "${NEO4J_DIR}/bin/neo4j" start
32
33 # Regenerate the XML documents in `tests`.
34 tests:
35 $(MAKE) -C tests
36
37 # Run the tests.
38 run-tests:
39 cd ../../tests; \
40 ./tests.sh ../contrib/neo_doxygen/src/tests/neo_doxygen_*.nit ; \
41 cd "${OLD_PWD}"