diff --git a/sortix/Makefile b/sortix/Makefile index a4d4dcfb..331629d7 100644 --- a/sortix/Makefile +++ b/sortix/Makefile @@ -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) \