SOURCE ?= lithuania-latest.osm.pbf WHERE ?= name='Visinčia' OR name='Šalčia' OR name='Nemunas' SLIDES = slides-2021-03-29.pdf NON_ARCHIVABLES = notes.txt referatui.txt slides-2021-03-29.txt ARCHIVABLES = $(filter-out $(NON_ARCHIVABLES),$(shell git ls-files .)) GIT_DEP= ifeq ($(shell git rev-parse --is-inside-git-dir),true) GIT_DEP=$(shell git rev-parse --show-toplevel)/.git endif .PHONY: test test: .faux_test .PHONY: test-integration test-integration: .faux_filter-rivers ./db -f tests-integration.sql .PHONY: clean clean: -./db stop -rm -r .faux_test .faux_filter-rivers .faux_import-osm .faux.db \ version.tex test-figures.pdf _minted-mj-msc \ $(shell git ls-files -o mj-msc*) \ $(SLIDES) .PHONY: clean-tables clean-tables: for t in $$(./db -c '\dt' | awk '/demo|debug|integ/{print $$3}'); do \ ./db -c "drop table $$t"; \ done .PHONY: slides slides: $(SLIDES) mj-msc.pdf: mj-msc.tex test-figures.pdf version.tex bib.bib latexmk -shell-escape -g -pdf $< mj-msc-full.pdf: mj-msc.pdf version.tex $(ARCHIVABLES) cp $< .tmp-$@ for f in $^; do \ if [ "$$f" = "$<" ]; then continue; fi; \ pdfattach .tmp-$@ $$f .tmp2-$@; \ mv .tmp2-$@ .tmp-$@; \ done mv .tmp-$@ $@ test-figures.pdf: layer2img.py .faux_test python ./layer2img.py --group1-table=figures --group1-arrows=yes --outfile=$@ .faux_test: tests.sql wm.sql .faux.db ./db -f tests.sql touch $@ .faux_filter-rivers: .faux_import-osm ./db -v where="$(WHERE)" -f aggregate-rivers.sql touch $@ .faux_import-osm: $(SOURCE) .faux.db PGPASSWORD=osm osm2pgsql \ -c --multi-geometry \ -H 127.0.0.1 -d osm -U osm \ $< touch $@ .faux.db: ./db start touch $@ $(SOURCE): wget http://download.geofabrik.de/europe/$@ REF = $(shell git describe --abbrev=12 --always --dirty) version.tex: Makefile $(GIT_DEP) ( \ TZ=UTC date '+\gdef\VCDescribe{%F ($(REF))}%'; \ ) > $@ # slides slides-2021-03-29.pdf: slides-2021-03-29.txt pandoc -t beamer -i $< -o $@ slides-2021-03-29.html: slides-2021-03-29.txt pandoc --verbose -t slidy --self-contained $< -o $@ $(SLIDY_ARGS)