diff options
author | Alexis211 <alexis211@gmail.com> | 2009-09-06 18:05:31 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-09-06 18:05:31 +0200 |
commit | d95452c5452b4ca7418505fa5597f000596fcb78 (patch) | |
tree | 3f8ce8a72620648a03cf882332ed3d10cf96bc2b /Source/Kernel/Makefile | |
parent | 6e83d6c7b9fc36f7e7826451899c564a34a2c761 (diff) | |
download | Melon-d95452c5452b4ca7418505fa5597f000596fcb78.tar.gz Melon-d95452c5452b4ca7418505fa5597f000596fcb78.zip |
Added read() and write() functions to Partition::
These functions make it possible to read or write bytes on a partition
without worrying of sectors.
Diffstat (limited to 'Source/Kernel/Makefile')
-rw-r--r-- | Source/Kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Kernel/Makefile b/Source/Kernel/Makefile index c0bb18b..87f1594 100644 --- a/Source/Kernel/Makefile +++ b/Source/Kernel/Makefile @@ -4,7 +4,7 @@ CC = gcc CXX = g++ LD = ld LDFLAGS = -T Link.ld -Map Map.txt --oformat=elf32-i386 -CFLAGS = -nostdlib -nostartfiles -nodefaultlibs -fno-builtin -fno-stack-protector -Wall -Wextra -Werror +CFLAGS = -nostdlib -nostartfiles -nodefaultlibs -fno-builtin -fno-stack-protector -Wall -Wextra -Werror -I . CXXFLAGS = -nostartfiles -nostdlib -fno-exceptions -fno-rtti -I . -Wall -Werror -Wno-write-strings -funsigned-char ASM = nasm ASMFLAGS = -f elf |