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/json/Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'userland/json') 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 -- cgit v1.2.3