From 8470dcc04fd76b3a2a5cbf1959bf31f609d9ab52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Autin?= Date: Wed, 5 Apr 2023 13:08:27 +0200 Subject: [PATCH] Fixed in order to build object files instead of archives --- userlib/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/userlib/Makefile b/userlib/Makefile index 79d7bd9..73d3ed9 100644 --- a/userlib/Makefile +++ b/userlib/Makefile @@ -1,7 +1,7 @@ TOPDIR = ../ include $(TOPDIR)/Makefile.rules -default: sys.a libnachos.a +default: sys.o libnachos.o clean: - $(RM) libnachos.a sys.a libnachos.o sys.o \ No newline at end of file + $(RM) libnachos.o sys.o \ No newline at end of file