# HG changeset patch # User Matthew Wild # Date 1536695994 -3600 # Node ID 709d5bb0acb48f54f11012d04cc0cc76ab7054af # Parent b09433ea9b0c5a1a2b5f4dfbb60069fd283ce0c2 Makefile; Factor out squish params and build with verse by default diff -r b09433ea9b0c -r 709d5bb0acb4 Makefile --- a/Makefile Tue Sep 11 20:59:11 2018 +0100 +++ b/Makefile Tue Sep 11 20:59:54 2018 +0100 @@ -7,6 +7,8 @@ SOURCE_FILES=$(shell $(SQUISH) --list-files) MISSING_FILES=$(shell $(SQUISH) --list-missing-files) +SQUISH_PARAMS=--with-verse + OUTPUT=build/scansion BIN_DIR=$(PREFIX)/bin @@ -14,7 +16,7 @@ all: $(OUTPUT) $(OUTPUT): build squishy $(SOURCE_FILES) - $(SQUISH) --output=$(OUTPUT) + $(SQUISH) $(SQUISH_PARAMS) --output=$(OUTPUT) build: mkdir build