aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Harvey <andrew@alantgeo.com.au>2021-05-05 15:35:44 +1000
committerAndrew Harvey <andrew@alantgeo.com.au>2021-05-05 15:35:44 +1000
commit0d2491f30ca7bed14aef5b6b0be892dfb457be80 (patch)
tree2f0859f74ff297f2e7737b52d2371a2dfd0b6544
parent7edfa3399d8c4a7af465108a1c88e014611566b4 (diff)
don't depend on shp file in Makefile to avoid re-building if our timestamps don't match
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f295eef..c2b8bf3 100644
--- a/Makefile
+++ b/Makefile
@@ -24,8 +24,8 @@ data/vicmap/ll_gda94/sde_shape/whole/VIC/VMPROP/layer/property_view.shp: data/VI
data/vicmap-property.fgb: data/vicmap/ll_gda94/sde_shape/whole/VIC/VMPROP/layer/property_view.shp
ogr2ogr -f FlatGeobuf -nlt PROMOTE_TO_MULTI $@ $<
-data/vicmap.geojson: data/vicmap/ll_gda94/sde_shape/whole/VIC/VMADD/layer/address.shp
- ogr2ogr -f GeoJSONSeq $@ $<
+data/vicmap.geojson:
+ ogr2ogr -f GeoJSONSeq $@ data/vicmap/ll_gda94/sde_shape/whole/VIC/VMADD/layer/address.shp
dist/vicmap-osm.geojson: data/vicmap.geojson
./bin/vicmap2osm.js $< $@