From 383e55e6bb725a01f652a9fb74f6103b2c789793 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Wed, 8 Dec 2021 13:31:20 +0200 Subject: Added some C11 atomic operations Mainly to be used in spinlocks etc. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 9e1b5d3..2a388e8 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ DO != echo > deps.mk # this could be done better -DEBUGFLAGS != [ $(DEBUG) ] && echo "-O0 -ggdb3 -DDEBUG" || echo "-flto -O2" +DEBUGFLAGS != [ $(RELEASE) ] && echo "-flto -O2" || echo "-O0 -ggdb3 -DDEBUG" CFLAGS = -fno-pie -ffreestanding -nostdlib -std=c17 -Wall -Wextra DEPFLAGS = -MT $@ -MMD -MP -MF $@.d -- cgit v1.3