From fb7e2c415899af562b7d5e080f8d06ffaed09586 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 13 May 2012 17:22:15 -0400 Subject: 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 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.1