diff options
Diffstat (limited to 'libgui')
-rw-r--r-- | libgui/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libgui/Makefile b/libgui/Makefile index 59254d4..bcd2016 100644 --- a/libgui/Makefile +++ b/libgui/Makefile @@ -5,12 +5,12 @@ COBJS = vesa.o \ gui.o CC = ../cross/opt/bin/i686-elf-gcc LD = ../cross/opt/bin/i686-elf-ld -OC = ../cross/opt/bin/i686-elf-ar +AR = ../cross/opt/bin/i686-elf-ar # Flags to make the binary smaller TODO: Remove after indirect pointer support! CSFLAGS = -mpreferred-stack-boundary=2 -fno-asynchronous-unwind-tables -Os -CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builtin -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Iinc/ -I../libc/inc/ -Duserspace -fPIE +CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -fno-builtin -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Iinc/ -I../libc/inc/ -Duserspace -fPIE all: libgui clean @@ -19,7 +19,7 @@ all: libgui clean libgui: $(COBJS) @mkdir -p ../build/ - @$(AR) qc ../build/libgui.a $+ + @$(AR) rcs ../build/libgui.a $+ clean: @find . -name "*.o" -type f -delete |