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 $@