From 3ff953e7fdea65cccf5071966c49277c8d8eb289 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Sun, 22 Oct 2023 21:34:42 +0200 Subject: Change CC in Makefiles to not use a absolute path --- userland/snake/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'userland/snake') diff --git a/userland/snake/Makefile b/userland/snake/Makefile index f29df30..19cf3fe 100644 --- a/userland/snake/Makefile +++ b/userland/snake/Makefile @@ -1,4 +1,4 @@ -CC="/home/anton/prj/osdev/sysroot/bin/i686-sb-gcc" +CC="i686-sb-gcc" CFLAGS = -ggdb -ffreestanding -O0 -Wall -Wextra -pedantic -mgeneral-regs-only -Wimplicit-fallthrough -static -fsanitize=shift,signed-integer-overflow,bounds LIB=-L../libgui -lgui -L../json -ljson -L../libc -lc -lgcc INC=-I../libc/ -I../json/ -I../libgui/ -- cgit v1.2.3