2021-05-19 22:57:46 +03:00
|
|
|
# HACK HACK
|
|
|
|
EMPTY :=
|
|
|
|
SPACE := $(EMPTY) $(EMPTY)
|
|
|
|
|
2021-05-19 22:57:46 +03:00
|
|
|
RIVERS ?= Visinčia Šalčia Žeimena Lakaja Nemunas
|
2021-05-19 22:57:46 +03:00
|
|
|
|
|
|
|
.faux_filter-rivers: .faux_import-osm
|
|
|
|
./filter-rivers-query.awk $(RIVERS) | ./db -f -
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
.faux_import-osm: lithuania-latest.osm.pbf .faux.db
|
|
|
|
PGPASSWORD=osm osm2pgsql \
|
|
|
|
-c --multi-geometry \
|
|
|
|
-H 127.0.0.1 -d osm -U osm \
|
|
|
|
$<
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
.faux.db:
|
|
|
|
./db start
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
lithuania-latest.osm.pbf:
|
|
|
|
wget http://download.geofabrik.de/europe/lithuania-latest.osm.pbf
|