From 2a94d8084d45caf38193d7cf317166bfd7d4b7fe Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Thu, 28 Jan 2016 10:57:55 -0800 Subject: [PATCH] No need to have these parts of the test run in the same subshell --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 38ca85e..6746fcd 100644 --- a/Makefile +++ b/Makefile @@ -72,7 +72,7 @@ prep-test: test: tippecanoe tippecanoe-decode $(addsuffix .check,$(TESTS)) %.json.check: - ./tippecanoe -f -o $@.mbtiles $(subst _, ,$(patsubst %.json.check,%,$(word 4,$(subst /, ,$@)))) $(subst $(SPACE),/,$(wordlist 1,2,$(subst /, ,$@)))/in.json && \ - ./tippecanoe-decode $@.mbtiles > $@.out && \ - cmp $(patsubst %.check,%,$@) $@.out && \ + ./tippecanoe -f -o $@.mbtiles $(subst _, ,$(patsubst %.json.check,%,$(word 4,$(subst /, ,$@)))) $(subst $(SPACE),/,$(wordlist 1,2,$(subst /, ,$@)))/in.json + ./tippecanoe-decode $@.mbtiles > $@.out + cmp $(patsubst %.check,%,$@) $@.out rm $@.out $@.mbtiles