diff test/hacking-arm-thumb-interwork/Makefile.linux @ 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-arm-thumb-interwork/Makefile.linux	Tue Dec 06 23:48:58 2022 +0100
+++ b/test/hacking-arm-thumb-interwork/Makefile.linux	Thu Dec 15 10:27:40 2022 +0100
@@ -2,9 +2,9 @@
 TARGET_ARCH	+= -mthumb-interwork
 all: test
 thumb.o: thumb.c
-	$(COMPILE.c) $< -mthumb $(OUTPUT_OPTION)
+	${COMPILE.c} $< -mthumb ${OUTPUT_OPTION}
 test: test.o thumb.o arm.o
-	$(LINK.o) $^ $(OUTPUT_OPTION)
+	${LINK.o} $^ ${OUTPUT_OPTION}
 clean:
-	$(RM) $(TARGETS) *.o
+	${RM} ${TARGETS} *.o