aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Harvey <andrew@alantgeo.com.au>2021-06-10 08:40:34 +1000
committerAndrew Harvey <andrew@alantgeo.com.au>2021-06-10 08:40:34 +1000
commit5b1077017e4b32443f18ba2395d7884af97e7dab (patch)
tree56d4e54cdc684b4f562a93442f3fa30f7f94841b
parent0d9bdd6a6e941a6d12518fab8bc0ff8019f1c08a (diff)
don't depend on sources in Makefile to avoid rebuild instead of using from cache
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 1978b3a..0a5f355 100644
--- a/Makefile
+++ b/Makefile
@@ -216,10 +216,10 @@ dist/candidates: data/victoria-admin-level10.osm.geojson dist/conflate
mkdir -p $@
./bin/candidates.js $^ $@
-dist/vicmap-complex-conflation: dist/vicmap-complex.geojson data/victoria-named-features.osm.geojson
+dist/vicmap-complex-conflation: dist/vicmap-complex.geojson
mkdirp -p $@
- ./bin/complex.js $^ $@
+ ./bin/complex.js $< data/victoria-named-features.osm.geojson $@
-dist/vicmap-building-conflation: dist/vicmap-building.geojson data/victoria-named-features.osm.geojson
+dist/vicmap-building-conflation: dist/vicmap-building.geojson
mkdirp -p $@
- ./bin/building.js $^ $@
+ ./bin/building.js $< data/victoria-named-features.osm.geojson $@