view test/hacking-mips/Makefile @ 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

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