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/json | |
parent | 4f30105a95fd5958665a1ff394b2fe7a2f91c7fb (diff) |
Change CC in Makefiles to not use a absolute path
Diffstat (limited to 'userland/json')
-rw-r--r-- | userland/json/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/userland/json/Makefile b/userland/json/Makefile index 9fcb567..3a6bc90 100644 --- a/userland/json/Makefile +++ b/userland/json/Makefile @@ -1,8 +1,6 @@ -#CC="/home/anton/opt/cross/bin/i686-elf-gcc" -#AR="/home/anton/opt/cross/bin/i686-elf-ar" -CC="/home/anton/prj/osdev/sysroot/bin/i686-sb-gcc" -AR="/home/anton/prj/osdev/sysroot/bin/i686-sb-ar" -CFLAGS = -O0 -Wall -Wextra -pedantic -Wimplicit-fallthrough -static -Wno-undef +CC="i686-sb-gcc" +AR="i686-sb-ar" +CFLAGS = -O2 -Wall -Wextra -pedantic -Wimplicit-fallthrough -static -Wno-undef BINS=libjson.a all: $(BINS) LIBS=-L./hashmap -lhashmap |