mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
Fix code style
This commit is contained in:
parent
7ffcc99755
commit
18fa71b24a
1 changed files with 5 additions and 1 deletions
|
@ -3,7 +3,11 @@ CCPREFIX = i686-elf-
|
|||
AS = $(CCPREFIX)as
|
||||
CC = $(CCPREFIX)gcc
|
||||
|
||||
OBJS = boot.s.o main.c.o logger.c.o console.c.o isr.c.o isr.asm.cpp.o multiboot.c.o protected.asm.cpp.o protected.c.o
|
||||
OBJS = boot.s.o main.c.o
|
||||
OBJS += logger.c.o console.c.o
|
||||
OBJS += multiboot.c.o
|
||||
OBJS += isr.c.o isr.asm.cpp.o
|
||||
OBJS += protected.c.o protected.asm.cpp.o
|
||||
|
||||
all: kernel
|
||||
|
||||
|
|
Loading…
Reference in a new issue