diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2021-12-08 13:31:20 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2021-12-08 13:31:20 +0200 |
| commit | 383e55e6bb725a01f652a9fb74f6103b2c789793 (patch) | |
| tree | d5ce2f92a5f5545a2203d4dbfbf9b8fd8caa7584 /Makefile | |
| parent | 5c335752c4fb7e472d68b2b2731c3674a10cbd97 (diff) | |
| download | kmi-383e55e6bb725a01f652a9fb74f6103b2c789793.tar.gz kmi-383e55e6bb725a01f652a9fb74f6103b2c789793.zip | |
Added some C11 atomic operations
Mainly to be used in spinlocks etc.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
