diff options
author | Andrew Harvey <andrew@alantgeo.com.au> | 2021-06-10 08:40:34 +1000 |
---|---|---|
committer | Andrew Harvey <andrew@alantgeo.com.au> | 2021-06-10 08:40:34 +1000 |
commit | 5b1077017e4b32443f18ba2395d7884af97e7dab (patch) | |
tree | 56d4e54cdc684b4f562a93442f3fa30f7f94841b | |
parent | 0d9bdd6a6e941a6d12518fab8bc0ff8019f1c08a (diff) |
don't depend on sources in Makefile to avoid rebuild instead of using from cache
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 $@ |