diff options
author | Marvin Borner | 2020-08-21 20:39:48 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-21 20:39:48 +0200 |
commit | f700ba6668dbdb91a03b2c5aa387eb4cabae8fcd (patch) | |
tree | b04a80efabb09c9da9726332ccd22cb5a325fe39 /libgui | |
parent | 1339d96cea2c647991c178587008d6fc40772a78 (diff) |
Some things here and some things there
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 |