BurritOS/test/riscv_instructions/jump_instructions/Makefile
François Autin 411caac86f Assembly lib
2023-04-05 10:53:34 +00:00

15 lines
244 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.rules
$(PROGRAMS): % : $(USERLIB)/sys.o $(USERLIB)/libnachos.o %.o