summaryrefslogtreecommitdiff
path: root/mk/debug.mk
diff options
context:
space:
mode:
Diffstat (limited to 'mk/debug.mk')
-rw-r--r--mk/debug.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/mk/debug.mk b/mk/debug.mk
index 67e9ad1..bc98b58 100644
--- a/mk/debug.mk
+++ b/mk/debug.mk
@@ -3,14 +3,14 @@
# All rights reserved. Released under the 2-clause BSD license.
_RC_DEBUG_SH= case "${DEBUG}" in "") echo "";; *) echo "-DRC_DEBUG";; esac
-_RC_DEBUG!= ${_RC_DEBUG_SH}
-CPPFLAGS+= ${_RC_DEBUG}$(shell ${_RC_DEBUG_SH})
+_RC_DEBUG:= $(shell ${_RC_DEBUG_SH})
+CPPFLAGS+= ${_RC_DEBUG}
# Should we enable this with a different flag?
_LD_DEBUG_SH= case "${DEBUG}" in "") echo "";; *) echo "-Wl,--rpath=../librc -Wl,--rpath=../libeinfo";; esac
-_LD_DEBUG!= ${_LD_DEBUG_SH}
-LDFLAGS+= ${_LD_DEBUG}$(shell ${_LD_DEBUG_SH})
+_LD_DEBUG:= $(shell ${_LD_DEBUG_SH})
+LDFLAGS+= ${_LD_DEBUG}
_GGDB_SH= case "${DEBUG}" in "") echo "";; *) echo "-ggdb";; esac
-_GGDB!= ${_GGDB_SH}
-CFLAGS+= ${_GGDB}$(shell ${_GGDB_SH})
+_GGDB:= $(shell ${_GGDB_SH})
+CFLAGS+= ${_GGDB}