comparison 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
comparison
equal deleted inserted replaced
643:d76a991b7d2a 644:f13444192ceb
1 TARGETS = test 1 TARGETS = test
2 TARGET_ARCH += -mthumb-interwork 2 TARGET_ARCH += -mthumb-interwork
3 all: test 3 all: test
4 thumb.o: thumb.c 4 thumb.o: thumb.c
5 $(COMPILE.c) $< -mthumb $(OUTPUT_OPTION) 5 ${COMPILE.c} $< -mthumb ${OUTPUT_OPTION}
6 test: test.o thumb.o arm.o 6 test: test.o thumb.o arm.o
7 $(LINK.o) $^ $(OUTPUT_OPTION) 7 ${LINK.o} $^ ${OUTPUT_OPTION}
8 clean: 8 clean:
9 $(RM) $(TARGETS) *.o 9 ${RM} ${TARGETS} *.o
10 10