BurritOS/test/syscall_tests/Makefile

17 lines
262 B
Makefile
Raw Normal View History

2023-04-04 20:55:27 +02:00
2023-04-05 15:09:10 +02:00
PROGRAMS = halt.guac prints.guac
2023-04-04 20:55:27 +02:00
build: $(PROGRAMS)
dumps: halt.dump prints.dump
tests: halt.guac prints.guac
clean:
2023-04-05 15:09:10 +02:00
$(RM) halt.o prints.o
2023-04-04 20:55:27 +02:00
2023-04-05 15:09:10 +02:00
TOPDIR = ../..
2023-04-05 12:53:34 +02:00
include $(TOPDIR)/Makefile.rules
2023-04-04 20:55:27 +02:00
2023-04-05 15:09:10 +02:00
$(PROGRAMS): %.guac : $(USERLIB)/sys.o $(USERLIB)/libnachos.o %.o