view test/hacking-mips/Makefile @ 664:64880e3f286c default tip

- test/thunk: disable output buffering (might not be able catch segfaults on stack without SA_ONSTACK, so print maximum for when handler isn't called)
author Tassilo Philipp
date Thu, 23 May 2024 16:05:45 +0200
parents f13444192ceb
children
line wrap: on
line source

CFLAGS = 
MODULES = main.o dispatch.o f.o node.o call.o
TARGETS = calls.s test
all: ${TARGETS}
test: ${MODULES}
	${CC} $^ -o $@
%.s: %.c
	${CC} -S $< -o $@
clean:
	${RM} ${TARGETS} *.o