From 5b1077017e4b32443f18ba2395d7884af97e7dab Mon Sep 17 00:00:00 2001 From: Andrew Harvey Date: Thu, 10 Jun 2021 08:40:34 +1000 Subject: don't depend on sources in Makefile to avoid rebuild instead of using from cache --- Makefile | 8 ++++---- 1 file 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 $@ -- cgit v1.2.3