Merge: standard: Clean warnings
[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 NITG=../../bin/nitg
16 NITG_FLAGS=--dir bin
17 NEO4J_DIR=/var/lib/neo4j
18
19 .PHONY: bin reset-neo
20
21 # Compile the tool.
22 bin:
23 mkdir -p bin
24 ../../bin/nitg --dir bin src/neo_doxygen.nit
25
26 # Reset the local graph.
27 reset-neo:
28 sudo -u neo4j "${NEO4J_DIR}/bin/neo4j" stop \
29 && sudo -u neo4j rm -rf "${NEO4J_DIR}/data/graph.db" \
30 && sudo -u neo4j "${NEO4J_DIR}/bin/neo4j" start