BurritOS/test/riscv_instructions/jump_instructions/Makefile

15 lines
241 B
Makefile
Raw Normal View History

2023-03-28 19:35:24 +02:00
PROGRAMS = jump ret
build: $(PROGRAMS)
2023-03-01 13:44:48 +01:00
2023-03-08 13:02:03 +01:00
dumps: jump.dump ret.dump
2023-03-28 19:35:24 +02:00
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