BurritOS/test/riscv_instructions/jump_instructions/Makefile

15 lines
244 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
2023-04-05 12:53:34 +02:00
TOPDIR = ../../..
include $(TOPDIR)/Makefile.rules
2023-03-28 19:35:24 +02:00
$(PROGRAMS): % : $(USERLIB)/sys.o $(USERLIB)/libnachos.o %.o