stud/IV/Makefile

46 lines
961 B
Makefile
Raw Normal View History

2021-03-13 16:46:32 +02:00
SOURCE ?= lithuania-latest.osm.pbf
2021-03-13 16:44:31 +02:00
WHERE ?= name='Visinčia' OR name='Šalčia' OR name='Nemunas'
2021-03-13 15:53:22 +02:00
2021-03-15 18:58:16 +02:00
.PHONY: test
test: tests.sql .faux.db
./db -f tests.sql
2021-03-17 11:32:12 +02:00
.PHONY: test-integration
test-integration: .faux_filter-rivers
./db -f tests-integration.sql
2021-03-15 18:58:16 +02:00
2021-03-23 18:40:25 +02:00
.PHONY: clean
2021-03-21 16:52:31 +02:00
clean:
-./db stop
-rm .faux_filter-rivers .faux_import-osm .faux.db
2021-03-23 18:40:25 +02:00
.PHONY: clean-tables
clean-tables:
2021-03-25 11:34:30 +02:00
for t in $$(./db -c '\dt' | awk '/demo|debug|integ/{print $$3}'); do \
2021-03-23 18:40:25 +02:00
./db -c "drop table $$t"; \
done
2021-03-27 13:01:21 +02:00
slides-2021-03-29.pdf: slides-2021-03-29.txt
pandoc -t beamer -i $< -o $@
2021-03-28 12:35:15 +03:00
slides-2021-03-29.html:
pandoc -t slidy --self-contained $< -o $@
2021-03-13 15:53:22 +02:00
.faux_filter-rivers: .faux_import-osm
2021-03-13 16:44:31 +02:00
./db -v where="$(WHERE)" -f aggregate-rivers.sql
2021-03-13 15:53:22 +02:00
touch $@
2021-03-13 16:46:32 +02:00
.faux_import-osm: $(SOURCE) .faux.db
2021-03-13 15:53:22 +02:00
PGPASSWORD=osm osm2pgsql \
-c --multi-geometry \
-H 127.0.0.1 -d osm -U osm \
$<
touch $@
.faux.db:
./db start
touch $@
2021-03-13 16:46:32 +02:00
$(SOURCE):
wget http://download.geofabrik.de/europe/$@