From 2a9abb068fbaabeca0ee4ca5591f32ab6bf6e1d0 Mon Sep 17 00:00:00 2001 From: pjht Date: Sat, 25 May 2019 10:11:23 -0500 Subject: [PATCH] fix init and vfs build --- init/Makefile | 1 - vfs/Makefile | 1 - 2 files changed, 2 deletions(-) diff --git a/init/Makefile b/init/Makefile index 5511b5e..757c6f1 100644 --- a/init/Makefile +++ b/init/Makefile @@ -5,7 +5,6 @@ CC = i386-elf-gcc init: $(OBJ) @i386-elf-ld -o $@ $^ ../libc/libc.a - @rm -rf *.o %.o: %.c @$(CC) $(CFLAGS) -c $< -o $@ diff --git a/vfs/Makefile b/vfs/Makefile index e0371db..b38145e 100644 --- a/vfs/Makefile +++ b/vfs/Makefile @@ -5,7 +5,6 @@ CC = i386-elf-gcc vfs: $(OBJ) @i386-elf-ld -o $@ $^ ../libc/libc.a - @rm -rf *.o %.o: %.c @$(CC) $(CFLAGS) -c $< -o $@