Sort objects in kernel makefile.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-12-05 19:29:20 +01:00
parent f1bbbe5153
commit 4d37197472
1 changed files with 47 additions and 47 deletions

View File

@ -82,62 +82,62 @@ HEADERDIRS:=$(shell find include -type d)
HEADERS:=$(shell find include -type f)
OBJS=$(CPUOBJS) \
kernel.o \
crc32.o \
string.o \
interrupt.o \
worker.o \
time.o \
log.o \
utf8.o \
memorymanagement.o \
ata.o \
bga.o \
calltrace.o \
$(CPU)/calltrace.o \
kthread.o \
$(CPU)/kthread.o \
interlock.o \
$(CPU)/interlock.o \
panic.o \
keyboard.o \
kb/ps2.o \
kb/layout/us.o \
scheduler.o \
syscall.o \
sound.o \
pci.o \
com.o \
uart.o \
terminal.o \
linebuffer.o \
logterminal.o \
textterminal.o \
serialterminal.o \
textbuffer.o \
vgatextbuffer.o \
lfbtextbuffer.o \
$(CPU)/calltrace.o \
$(CPU)/interlock.o \
$(CPU)/kthread.o \
crc32.o \
descriptors.o \
device.o \
refcount.o \
video.o \
bga.o \
vga.o \
kernelinfo.o \
elf.o \
process.o \
initrd.o \
thread.o \
io.o \
pipe.o \
filesystem.o \
directory.o \
mount.o \
signal.o \
fs/util.o \
elf.o \
filesystem.o \
fs/devfs.o \
fs/initfs.o \
fs/ramfs.o \
fs/util.o \
fs/videofs.o \
ata.o \
initrd.o \
interlock.o \
interrupt.o \
io.o \
kb/layout/us.o \
kb/ps2.o \
kernelinfo.o \
kernel.o \
keyboard.o \
kthread.o \
lfbtextbuffer.o \
linebuffer.o \
log.o \
logterminal.o \
memorymanagement.o \
mount.o \
panic.o \
pci.o \
pipe.o \
process.o \
refcount.o \
scheduler.o \
serialterminal.o \
signal.o \
sound.o \
string.o \
syscall.o \
terminal.o \
textbuffer.o \
textterminal.o \
thread.o \
time.o \
uart.o \
utf8.o \
vga.o \
vgatextbuffer.o \
video.o \
worker.o \
ALLOBJS=\
$(OBJS) \