1
0
Fork 0
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:
Braiden Vasco 2017-11-03 02:22:19 +00:00
parent 7ffcc99755
commit 18fa71b24a

View file

@ -3,7 +3,11 @@ CCPREFIX = i686-elf-
AS = $(CCPREFIX)as AS = $(CCPREFIX)as
CC = $(CCPREFIX)gcc 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 all: kernel