summaryrefslogtreecommitdiff
path: root/userland/libgui
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2023-10-22 21:34:42 +0200
committerAnton Kling <anton@kling.gg>2023-10-22 21:34:42 +0200
commit3ff953e7fdea65cccf5071966c49277c8d8eb289 (patch)
tree64759146313f683122a0c7748dec1e474eb49233 /userland/libgui
parent4f30105a95fd5958665a1ff394b2fe7a2f91c7fb (diff)
Change CC in Makefiles to not use a absolute path
Diffstat (limited to 'userland/libgui')
-rw-r--r--userland/libgui/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/userland/libgui/Makefile b/userland/libgui/Makefile
index 5a895c4..584fda6 100644
--- a/userland/libgui/Makefile
+++ b/userland/libgui/Makefile
@@ -1,6 +1,5 @@
-CC="/home/anton/prj/osdev/sysroot/bin/i686-sb-gcc"
-AR="/home/anton/prj/osdev/sysroot/bin/i686-sb-ar"
-#CFLAGS = -ggdb -ffreestanding -O0 -Wall -Wextra -pedantic -mgeneral-regs-only -Wimplicit-fallthrough -nostdlib -static -Wno-undef -fsanitize=shift,signed-integer-overflow,bounds
+CC="i686-sb-gcc"
+AR="i686-sb-ar"
CFLAGS = -O2 -ggdb -ffreestanding -O0 -Wall -Wextra -pedantic -mgeneral-regs-only -Wimplicit-fallthrough -nostdlib -static -Wno-undef
BINS=libgui.a
all: $(BINS)