aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 7 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index b0326a0..d1576dc 100644
--- a/Makefile
+++ b/Makefile
@@ -9,6 +9,7 @@ COBJS = src/main.o \
src/drivers/keyboard.o \
src/drivers/ide.o \
src/features/fs.o \
+ src/features/psf.o \
src/lib/str.o \
src/lib/mem.o \
src/lib/math.o \
@@ -26,17 +27,17 @@ ASFLAGS = -f elf32
all: compile clean
%.o: %.c
- $(CC) $(CFLAGS) $< -o $@
+ @$(CC) $(CFLAGS) $< -o $@
%_asm.o: %.asm
- $(AS) $(ASFLAGS) $< -o $@
+ @$(AS) $(ASFLAGS) $< -o $@
kernel: $(COBJS)
compile: kernel
- mkdir -p build/
- $(AS) -f bin src/entry.asm -o build/boot.bin
- $(LD) -N -emain -Ttext 0x00050000 -o build/kernel.bin $(COBJS) --oformat binary
+ @mkdir -p build/
+ @$(AS) -f bin src/entry.asm -o build/boot.bin
+ @$(LD) -N -emain -Ttext 0x00050000 -o build/kernel.bin $(COBJS) --oformat binary
clean:
- find src/ -name "*.o" -type f -delete
+ @find src/ -name "*.o" -type f -delete