view test/hacking-mips/Makefile @ 587:fbd5e5416a4b

Added tag r1.4-RC2 for changeset b26a2a4e1daa
author Tassilo Philipp
date Thu, 15 Sep 2022 18:11:48 +0200
parents 3e629dc19168
children f13444192ceb
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