mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-12 18:28:52 +08:00
f90a9b687f
closes #229
38 lines
1.2 KiB
Makefile
38 lines
1.2 KiB
Makefile
# Hey Emacs, this is a -*- makefile -*-
|
|
|
|
DATADIR = $(PAPARAZZI_HOME)/conf/maps_data
|
|
Q=@
|
|
|
|
# default directory for temporary files
|
|
TMPDIR ?= /tmp
|
|
|
|
all: $(PAPARAZZI_HOME)/conf/maps.xml
|
|
|
|
clean:
|
|
rm -f $(DATADIR)/maps.google.com
|
|
|
|
$(DATADIR):
|
|
mkdir $(DATADIR)
|
|
|
|
$(DATADIR)/maps.google.com: $(DATADIR) FORCE
|
|
@echo "-----------------------------------------------"
|
|
@echo "DOWNLOAD: google maps version code";
|
|
$(Q)wget -q -O $(@) http://maps.google.com/ || \
|
|
(rm -f $(@) && \
|
|
echo "Could not download google maps version code" && \
|
|
echo "-----------------------------------------------" && \
|
|
exit 1)
|
|
|
|
$(PAPARAZZI_HOME)/conf/maps.xml: $(DATADIR)/maps.google.com
|
|
$(eval GOOGLE_VERSION := $(shell grep -E "http://khm[0-9]+.google.com/kh/v=[0-9]+.x26" $(DATADIR)/maps.google.com | sed -E 's#.*http://khm[0-9]+.google.com/kh/v=##;s#.x26.*##'))
|
|
@echo "Updated google maps version to $(GOOGLE_VERSION)"
|
|
@echo "-----------------------------------------------"
|
|
$(Q)echo "<!DOCTYPE maps SYSTEM \"maps.dtd\">" > $(TMPDIR)/maps.xml
|
|
$(Q)echo "" >> $(TMPDIR)/maps.xml
|
|
$(Q)echo "<maps google_version=\"$(GOOGLE_VERSION)\"/>" >> $(TMPDIR)/maps.xml
|
|
$(Q)echo "" >> $(TMPDIR)/maps.xml
|
|
$(Q)mv $(TMPDIR)/maps.xml $@
|
|
|
|
FORCE:
|
|
.PHONY: all clean
|