BurritOS/test/riscv_instructions/jump_instructions/Makefile

12 lines
220 B
Makefile
Raw Normal View History

2023-04-05 17:05:55 +02:00
PROGRAMS = jump.guac ret.guac
TOPDIR = ../../..
include $(TOPDIR)/Makefile.rules
2023-03-28 19:35:24 +02:00
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
clean:
2023-04-05 17:05:55 +02:00
$(RM) *.o *.guac
2023-03-28 19:35:24 +02:00
2023-04-05 17:05:55 +02:00
$(PROGRAMS): %.guac : $(USERLIB)/sys.o $(USERLIB)/libnachos.o %.o