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/test/Makefile | |
parent | 4f30105a95fd5958665a1ff394b2fe7a2f91c7fb (diff) |
Change CC in Makefiles to not use a absolute path
Diffstat (limited to 'userland/test/Makefile')
-rw-r--r-- | userland/test/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/userland/test/Makefile b/userland/test/Makefile index 7287939..0e3b495 100644 --- a/userland/test/Makefile +++ b/userland/test/Makefile @@ -1,5 +1,4 @@ -#CC="/home/anton/opt/cross/bin/i686-elf-gcc" -CC="/home/anton/prj/osdev/sysroot/bin/i686-sb-gcc" +CC="i686-sb-gcc" CFLAGS = -O2 -Wall -Wextra -pedantic -Wimplicit-fallthrough -static LIB=-L../json -L../json/hashmap -ljson -lhashmap INC=-I../json/ |