diff test/hacking-mips/Makefile @ 644:f13444192ceb

- portability improvements in some test makefiles
author Tassilo Philipp
date Thu, 15 Dec 2022 10:27:40 +0100
parents 3e629dc19168
children
line wrap: on
line diff
--- a/test/hacking-mips/Makefile	Tue Dec 06 23:48:58 2022 +0100
+++ b/test/hacking-mips/Makefile	Thu Dec 15 10:27:40 2022 +0100
@@ -1,10 +1,10 @@
 CFLAGS = 
 MODULES = main.o dispatch.o f.o node.o call.o
 TARGETS = calls.s test
-all: $(TARGETS)
-test: $(MODULES)
-	$(CC) $^ -o $@
+all: ${TARGETS}
+test: ${MODULES}
+	${CC} $^ -o $@
 %.s: %.c
-	$(CC) -S $< -o $@
+	${CC} -S $< -o $@
 clean:
-	$(RM) $(TARGETS) *.o
+	${RM} ${TARGETS} *.o