diff options
Diffstat (limited to 'src/rules.make')
-rw-r--r-- | src/rules.make | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rules.make b/src/rules.make index 14dfe0a..9640480 100644 --- a/src/rules.make +++ b/src/rules.make @@ -4,11 +4,11 @@ AS = nasm ASFLAGS = -felf -g CC = i586-elf-gcc -CFLAGS += -ffreestanding -std=gnu99 -Wall -Wextra -Werror -Wno-unused-parameter -I . -I ./include -g +CFLAGS += -ffreestanding -std=gnu99 -Wall -Wextra -Werror -Wno-unused-parameter -I . -I ./include -g -O2 -Os # CXX = i586-elf-g++ # CXFLAGS = -ffreestanding -O3 -Wall -Wextra -I . -I ./include -fno-exceptions -fno-rtti LD = i586-elf-gcc -LDFLAGS += -ffreestanding -nostdlib -lgcc +LDFLAGS += -ffreestanding -nostdlib -lgcc -O2 -Os all: $(OUT) |