BurritOS/test/riscv_instructions/jump_instructions/Makefile
2023-03-28 19:35:24 +02:00

15 lines
241 B
Makefile

PROGRAMS = jump ret
build: $(PROGRAMS)
dumps: jump.dump ret.dump
tests: jump.guac ret.guac
clean:
$(RM) jump jump.o ret ret.o
TOPDIR = ../..
include $(TOPDIR)/Makefile.tests
$(PROGRAMS): % : $(USERLIB)/sys.o $(USERLIB)/libnachos.o %.o