aboutsummaryrefslogtreecommitdiff
path: root/libgui
diff options
context:
space:
mode:
authorMarvin Borner2020-08-21 20:39:48 +0200
committerMarvin Borner2020-08-21 20:39:48 +0200
commitf700ba6668dbdb91a03b2c5aa387eb4cabae8fcd (patch)
treeb04a80efabb09c9da9726332ccd22cb5a325fe39 /libgui
parent1339d96cea2c647991c178587008d6fc40772a78 (diff)
Some things here and some things there
Diffstat (limited to 'libgui')
-rw-r--r--libgui/Makefile6
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