blob: 8e65641ad4e994741352feb6c684c9f9f1b4e21c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
pkgdata_DATA = GL27 nad.lst nad27 nad83 pj_out27.dist pj_out83.dist \
proj_def.dat test27 test83 world epsg
EXTRA_DIST = GL27 nad.lst nad27 nad83 pj_out27.dist pj_out83.dist \
proj_def.dat test27 test83 world epsg
install-data-local:
@if [ -f conus.lla ] ; then \
for x in *.lla ; do \
DEST=$(pkgdatadir)/`basename $$x .lla`; \
echo "../src/nad2bin $$DEST < $$x"; \
../src/nad2bin $$DEST < $$x ; \
if [ $$? -ne 0 ] ; then \
echo "nad2bin failed to install $$DEST"; \
exit 1; \
fi; \
done; \
else \
echo "nad2nad NADCON source files not present"; \
fi
|