added: Finder is able to create a lookup-dir with nodes, as an input we use Open Street Map xml file
placefinder tool support now: --osm-file file_path, --lookup-dir dir_path, --create-lookup-dir parameters
This commit is contained in:
8
Makefile
8
Makefile
@@ -1,7 +1,10 @@
|
||||
|
||||
|
||||
CXX = g++10
|
||||
#CXX = clang++
|
||||
|
||||
CXXFLAGS = -Wl,-rpath=/usr/local/lib/gcc10 -Wfatal-errors -fPIC -Wall -pedantic -O0 -g3 -pthread -std=c++20 -I../../pikotools/src -I../lib -I/usr/local/include
|
||||
#CXXFLAGS = -fsanitize=address -Wfatal-errors -fPIC -Wall -pedantic -O0 -g3 -pthread -std=c++20 -I../../pikotools/src -I../lib -I/usr/local/include
|
||||
LDFLAGS = -L/usr/local/lib
|
||||
|
||||
#-fsanitize=address
|
||||
@@ -12,14 +15,14 @@ export CXXFLAGS
|
||||
export LDFLAGS
|
||||
export AR
|
||||
|
||||
all: lib placefinder pikotools
|
||||
all: lib placefinder
|
||||
|
||||
|
||||
lib: FORCE pikotools
|
||||
$(MAKE) -C lib
|
||||
|
||||
|
||||
placefinder: FORCE pikotools
|
||||
placefinder: FORCE pikotools lib
|
||||
$(MAKE) -C placefinder
|
||||
|
||||
|
||||
@@ -30,6 +33,7 @@ pikotools: FORCE
|
||||
clean: FORCE
|
||||
$(MAKE) -C lib clean
|
||||
$(MAKE) -C placefinder clean
|
||||
$(MAKE) -C ../pikotools clean
|
||||
|
||||
|
||||
depend: FORCE
|
||||
|
Reference in New Issue
Block a user