aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-02-14 13:28:28 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-02-14 13:28:28 -0500
commit2d9afed93ad7fb8a06b9374bac6a5704febfc126 (patch)
tree47b2b8cfda5c7e2a8c3e123ba39d557cba684c5c /Makefile
parent2864523eead672f17497f937f98c10c47f14a714 (diff)
Use dollar identifiers
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e2b77a44..e26ad184 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,8 @@
CC=gcc
PREFIX=/usr/local
VERSION=0.12.1
-CCONFIG=-std=c11 -Werror -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -fPIC -ftrapv -fvisibility=hidden -flto -fno-fat-lto-objects -Wl,-flto
+CCONFIG=-std=c11 -Werror -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -fPIC -ftrapv -fvisibility=hidden \
+ -flto -fno-fat-lto-objects -Wl,-flto -fdollars-in-identifiers
LDFLAGS=-Wl,-rpath '-Wl,$$ORIGIN'
# MAKEFLAGS := --jobs=$(shell nproc) --output-sync=target
CWARN=-Wall -Wextra -Wno-format