view 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 source

TARGETS		= test
TARGET_ARCH	+= -mthumb-interwork
all: test
thumb.o: thumb.c
	${COMPILE.c} $< -mthumb ${OUTPUT_OPTION}
test: test.o thumb.o arm.o
	${LINK.o} $^ ${OUTPUT_OPTION}
clean:
	${RM} ${TARGETS} *.o