From mboxrd@z Thu Jan 1 00:00:00 1970 From: mathstuf at gmail.com (Ben Boeckel) Date: Sat, 17 Nov 2012 16:16:23 +0000 (UTC) Subject: [PATCH] Makefile: improve dependency generation References: <1352940385-26357-1-git-send-email-jamie.couture@gmail.com> Message-ID: On Thu, Nov 15, 2012 at 03:40:52 GMT, Jamie Couture wrote: > rpmbuild will strip (debugging) symbols. I'm not sure about deb packaging; > I'm also not sure about *bsd. Regardless, I'll remove the append > condition, += > > CFLAGS = [default options] No, please keep the '+='. RPM (and other tools I imagine) set CFLAGS in the environment and usually pass them to make as well for Makefile-only projects and expect the build system to use those as well. Fedora passes -O2, so it should still get a release build (with debugging information). --Ben