From 755aed6182785175156e1f623a65e65715ac41ae Mon Sep 17 00:00:00 2001 From: Matt McCutchen Date: Sat, 10 Jan 2009 19:34:01 -0500 Subject: [PATCH 1/1] Catch an attempt to "make" without "shell-setup". --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 28e2824..a139c25 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,11 @@ NAME:=measurements empty:= + # $(OO) is now taken from shell-setup. +ifeq ($(OO),) +$(error You must source "shell-setup" in the shell before running make.) +endif + IDL_TYPES:=net/mattmccutchen/measurements/XMeasurementsAddIn -- 2.34.1