Add Makefile

This commit is contained in:
stefiosif
2022-04-02 20:16:54 +03:00
parent 9a8dfdb2c1
commit be3daed3cd
9 changed files with 496632 additions and 0 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
build:
py src/bulkloading.py data/offsets.txt data/coords.txt output/rtree.txt
range:
py src/rangequeries.py output/rtree.txt data/ranges.txt
knn:
py src/knnqueries.py output/rtree.txt data/knn.txt 10
.PHONY: clean
clean:
rm -rf output