view test/hacking-arm-thumb-interwork/Makefile.linux @ 663:127b569978cc default tip

- another tweak handling clang trying to be too smart (see last commit)
author Tassilo Philipp
date Sun, 24 Mar 2024 13:52:44 +0100
parents f13444192ceb
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