Changeset

373:39090da18b83

Makefile: Error if config.unix is missing
author Matthew Wild <mwild1@gmail.com>
date Fri, 01 Jan 2016 15:50:58 +0000
parents 372:0ce6d4a1e2fd
children 374:3267ae7c9217
files Makefile
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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)