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

16 lines
261 B
Makefile

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