diff options
author | Anton Kling <anton@kling.gg> | 2023-10-22 21:34:42 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-10-22 21:34:42 +0200 |
commit | 3ff953e7fdea65cccf5071966c49277c8d8eb289 (patch) | |
tree | 64759146313f683122a0c7748dec1e474eb49233 /userland/snake/Makefile | |
parent | 4f30105a95fd5958665a1ff394b2fe7a2f91c7fb (diff) |
Change CC in Makefiles to not use a absolute path
Diffstat (limited to 'userland/snake/Makefile')
-rw-r--r-- | userland/snake/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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/ |