From 6e8fd8c61a77e4eb08d859f8e0fc42226cc4c7f3 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 25 Jul 2020 17:41:54 +0200 Subject: Added very basic PSF parser Version 1 works; Version 2 not so much --- Makefile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3