summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-05-13 17:22:15 -0400
committerRich Felker <dalias@aerifal.cx>2012-05-13 17:22:15 -0400
commitfb7e2c415899af562b7d5e080f8d06ffaed09586 (patch)
treeda55e503bafef889c7e309110a71d45852839260 /Makefile
parent5761bcc3848e5956e06b9390ea40875cd4833caf (diff)
downloadnoxcuse-fb7e2c415899af562b7d5e080f8d06ffaed09586.tar.gz
remove -s from default CFLAGS
it can be added in config.mak if desired, but removing it from there is a pain, and it makes debugging impossible
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fedc7a2..e1ee228 100644
--- a/Makefile
+++ b/Makefile
@@ -2,8 +2,8 @@
bindir = /bin
usrbindir = /usr/bin
-CFLAGS = -D_XOPEN_SOURCE=700 -Os -s -Wall -Wno-format -Wno-char-subscripts -Wno-unused -Wno-parentheses
-LDFLAGS = -s
+CFLAGS = -D_XOPEN_SOURCE=700 -Os -Wall -Wno-format -Wno-char-subscripts -Wno-unused -Wno-parentheses
+LDFLAGS =
-include config.mak