diff options
author | Marvin Borner | 2020-09-12 20:44:19 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-12 20:44:19 +0200 |
commit | 52ca9e4f610e65077cb2fab7c1ed0e802fa4ac59 (patch) | |
tree | 2b7bc44d0d658e88a3f6b8f9593c15895c04a636 /apps | |
parent | 9df62e1f972784d87d01baa0ad950c005f41061a (diff) |
Fixed vbe parameter in ext2 loader
Diffstat (limited to 'apps')
-rw-r--r-- | apps/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile index b753dd5..84098c5 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -5,7 +5,7 @@ CC = ../cross/opt/bin/i686-elf-gcc LD = ../cross/opt/bin/i686-elf-ld OC = ../cross/opt/bin/i686-elf-objcopy -CFLAGS = -Wall -Wextra -nostdlib -nostdinc -fno-builtin -std=c99 -m32 -pedantic-errors -I../libc/inc/ -I../libgui/inc/ -fPIE -Duserspace -Ofast +CFLAGS = -Wall -Wextra -nostdlib -nostdinc -fno-builtin -std=c99 -m32 -pedantic-errors -I../libc/inc/ -I../libgui/inc/ -fPIE -Duserspace -Os all: $(COBJS) |