summaryrefslogtreecommitdiff
path: root/userland/json
diff options
context:
space:
mode:
Diffstat (limited to 'userland/json')
-rw-r--r--userland/json/Makefile8
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