diff options
author | Marvin Borner | 2020-07-23 21:06:44 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-23 21:06:44 +0200 |
commit | 6becbff5724d79cb3a958db297b5c3310200daea (patch) | |
tree | 295a5b4bf7ee2234fdc56c24fec28f936927de21 /Makefile | |
parent | a0b8c61b09200aa3f9e27878cb866648a7d26502 (diff) |
Added *very* simple ide and ext2 support
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -7,6 +7,8 @@ COBJS = src/main.o \ src/drivers/interrupts.o \ src/drivers/interrupts_asm.o \ src/drivers/keyboard.o \ + src/drivers/ide.o \ + src/features/fs.o \ src/lib/str.o \ src/lib/mem.o \ src/lib/math.o \ @@ -17,7 +19,7 @@ LD = cross/opt/bin/i686-elf-ld AS = nasm # TODO: Use lib as external library -CFLAGS = -Wall -Wextra -nostdlib -nostdinc -ffreestanding -mgeneral-regs-only -mno-80387 -std=c99 -pedantic-errors -Isrc/lib/inc/ -Isrc/inc/ -c +CFLAGS = -Wall -Wextra -nostdlib -nostdinc -ffreestanding -mgeneral-regs-only -std=c99 -pedantic-errors -Isrc/lib/inc/ -Isrc/inc/ -c ASFLAGS = -f elf32 |