xastir/Makefile.am
hjf 444b6bbcba
Move online WMS and radar .geo files into subdirectory (#378)
Moved online .geo maps out of top-level directory and into new online-maps directory.

Updated top-level makefile accordingly.

No visible changes in installation behavior.

Closes #355
2026-05-06 12:04:27 -06:00

89 lines
4.1 KiB
Makefile

#
# Copyright (C) 2000-2026 The Xastir Group
#
AUTOMAKE_OPTIONS = gnu dist-bzip2
ACLOCAL_AMFLAGS = -I m4
D= `date +%G%m%d.%H%M%S`
SUBDIRS = src config help scripts online-maps symbols callpass tests
# DISTCLEANFILES =
EXTRA_DIST = config.guess config.sub install-sh \
missing placeholder FAQ LICENSE README README.GIT.md \
README.CYGWIN CONTRIBUTING.md \
README.MAPS README.OSM_maps README.sudo testdbfawk.1 \
DEBUG_LEVELS bootstrap.sh INSTALL.md callpass.1 xastir.1 xastir_udp_client.1 \
worldhi.map \
Davis LaCrosse \
OSM_template \
CC_OpenStreetMap_logo.png CC_OpenStreetMap_txt.png \
COPYING COPYING.LIB.LESSTIF AUTHORS NaturalEarthVector
MAINTAINERCLEANFILES = configure aclocal.m4 Makefile.in Makefile \
config.guess config.sub install-sh missing mkinstalldirs
countydir=${pkgdatadir}/Counties
county_DATA=placeholder
fccdir=${pkgdatadir}/fcc
fcc_DATA=placeholder
gnisdir=${pkgdatadir}/GNIS
gnis_DATA=placeholder
mapdir=${pkgdatadir}/maps
map_DATA=worldhi.map CC_OpenStreetMap_logo.png CC_OpenStreetMap_txt.png
onlinedir=${pkgdatadir}/maps/Online
online_DATA=OSM_tiled_cycle.geo OSM_tiled_mapnik.geo \
OSM_tiled_fosm.geo
naturalearthmapdir=${pkgdatadir}/maps/NaturalEarth
naturalearthmap_DATA=NaturalEarthVector/LICENSE.md NaturalEarthVector/README NaturalEarthVector/ne_50m_admin_0_countries_lakes.README.html NaturalEarthVector/ne_50m_admin_0_countries_lakes.VERSION.txt NaturalEarthVector/ne_50m_admin_0_countries_lakes.cpg NaturalEarthVector/ne_50m_admin_0_countries_lakes.dbf NaturalEarthVector/ne_50m_admin_0_countries_lakes.dbfawk NaturalEarthVector/ne_50m_admin_0_countries_lakes.prj NaturalEarthVector/ne_50m_admin_0_countries_lakes.shp NaturalEarthVector/ne_50m_admin_0_countries_lakes.shx NaturalEarthVector/ne_50m_coastline.README.html NaturalEarthVector/ne_50m_coastline.VERSION.txt NaturalEarthVector/ne_50m_coastline.cpg NaturalEarthVector/ne_50m_coastline.dbf NaturalEarthVector/ne_50m_coastline.dbfawk NaturalEarthVector/ne_50m_coastline.prj NaturalEarthVector/ne_50m_coastline.shp NaturalEarthVector/ne_50m_coastline.shx NaturalEarthVector/ne_50m_lakes.README.html NaturalEarthVector/ne_50m_lakes.VERSION.txt NaturalEarthVector/ne_50m_lakes.cpg NaturalEarthVector/ne_50m_lakes.dbf NaturalEarthVector/ne_50m_lakes.dbfawk NaturalEarthVector/ne_50m_lakes.prj NaturalEarthVector/ne_50m_lakes.shp NaturalEarthVector/ne_50m_lakes.shx NaturalEarthVector/ne_50m_rivers_lake_centerlines.README.html NaturalEarthVector/ne_50m_rivers_lake_centerlines.VERSION.txt NaturalEarthVector/ne_50m_rivers_lake_centerlines.cpg NaturalEarthVector/ne_50m_rivers_lake_centerlines.dbf NaturalEarthVector/ne_50m_rivers_lake_centerlines.dbfawk NaturalEarthVector/ne_50m_rivers_lake_centerlines.prj NaturalEarthVector/ne_50m_rivers_lake_centerlines.shp NaturalEarthVector/ne_50m_rivers_lake_centerlines.shx
gpsdir=${pkgdatadir}/maps/GPS
gps_DATA=placeholder
sounddir=${pkgdatadir}/sounds
sound_DATA=placeholder
docdir=@docdir@
doc_DATA=AUTHORS FAQ ChangeLog LICENSE README README.GIT.md README.CYGWIN \
README.MAPS README.sudo COPYING INSTALL.md \
README.OSM_maps CONTRIBUTING.md \
COPYING.LIB.LESSTIF
install-data-hook:
cd $(DESTDIR)$(mapdir) && \
rm -f CC_OpenStreetMap.png && \
$(LN_S) CC_OpenStreetMap_logo.png CC_OpenStreetMap.png
mandir=@mandir@
man_MANS=xastir.1 callpass.1 xastir_udp_client.1 testdbfawk.1
# Use tiles for these maps
OSM_tiled_cycle.geo: OSM_template
sed -e '/THIS IS A TEMPLATE FILE/d' -e's/^#OSM_TILED_MAP/OSM_TILED_MAP/' \
-e's!^#URL tileURL!URL http://tile.opencyclemap.org/cycle/!' \
-e 's/-STYLE/-cycle/' \
< $(top_srcdir)/OSM_template >$@
OSM_tiled_mapnik.geo: OSM_template
sed -e '/THIS IS A TEMPLATE FILE/d' -e's/^#OSM_TILED_MAP/OSM_TILED_MAP/' \
-e's!^#URL tileURL!URL https://tile.openstreetmap.org/!' \
-e 's/-STYLE/-mapnik/' \
< $(top_srcdir)/OSM_template >$@
OSM_tiled_fosm.geo: OSM_template
sed -e '/THIS IS A TEMPLATE FILE/d' -e's/^#OSM_TILED_MAP/OSM_TILED_MAP/' \
-e's!^#URL tileURL!URL https://map.fosm.org/default/!' \
-e 's/-STYLE/-fosm/' \
< $(top_srcdir)/OSM_template >$@
ChangeLog::