# HG changeset patch
# User Matthew Wild <mwild1@gmail.com>
# Date 1451663458 0
# Node ID 39090da18b831860b78ba555780ceab19a827a20
# Parent  0ce6d4a1e2fd071cda2bf5951c5579b4fcfb5e71
Makefile: Error if config.unix is missing

diff -r 0ce6d4a1e2fd -r 39090da18b83 Makefile
--- a/Makefile	Fri Jan 01 15:41:04 2016 +0000
+++ b/Makefile	Fri Jan 01 15:50:58 2016 +0000
@@ -1,5 +1,9 @@
 include config.unix
 
+ifndef SQUISH
+  $(error Please run ./configure first)
+endif
+
 SOURCE_FILES=$(shell $(SQUISH) --list-files)
 MISSING_FILES=$(shell $(SQUISH) --list-missing-files)