From 45fa54abca52a80c980c870f43f1f82225d7c43d Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Tue, 20 Jan 2015 13:58:24 -0500 Subject: [PATCH] update test makefile --- test/makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/makefile b/test/makefile index 7a0e473..5796f33 100644 --- a/test/makefile +++ b/test/makefile @@ -5,6 +5,8 @@ MAKEFLAGS += --no-builtin-rules .SUFFIXES: .SECONDARY: +MPW ?= mpw + LIBS = \ {Libraries}Stubs.o \ {CLibraries}StdCLib.o \ @@ -43,8 +45,8 @@ clean : % : o/%.o - mpw Link $(LDFLAGS) -o $@ $^ $(LIBS) + $(MPW) Link $(LDFLAGS) -o $@ $^ $(LIBS) o/%.o : %.c - mpw SC $(SCFLAGS) $< -o $@ + $(MPW) SC $(SCFLAGS) $< -o $@