From 24919a98797fee468dfc012ae280ff8cae659882 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Autin?= Date: Wed, 5 Apr 2023 15:09:10 +0200 Subject: [PATCH] Makefile fixes --- test/syscall_tests/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/syscall_tests/Makefile b/test/syscall_tests/Makefile index 13adddc..40e1364 100644 --- a/test/syscall_tests/Makefile +++ b/test/syscall_tests/Makefile @@ -1,5 +1,5 @@ -PROGRAMS = halt prints +PROGRAMS = halt.guac prints.guac build: $(PROGRAMS) @@ -8,9 +8,9 @@ dumps: halt.dump prints.dump tests: halt.guac prints.guac clean: - $(RM) halt.o halt prints prints.o + $(RM) halt.o prints.o TOPDIR = ../.. include $(TOPDIR)/Makefile.rules -$(PROGRAMS): % : $(USERLIB)/sys.o $(USERLIB)/libnachos.o %.o \ No newline at end of file +$(PROGRAMS): %.guac : $(USERLIB)/sys.o $(USERLIB)/libnachos.o %.o