commit 98c379becf6f643c5ca3563dc31663c571a7867c parent bf32fb23a6a17ce0e1d49f66aca726d15e94d9f2 Author: Anselm R. Garbe <garbeam@wmii.de> Date: Fri, 12 May 2006 21:52:05 +0200 changing CFLAGS and LDFLAGS to make release-quality binaries (with -O3 and without -g stuff) Diffstat:
| config.mk | | | 8 | ++++++-- |
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/config.mk b/config.mk @@ -14,9 +14,13 @@ VERSION = 3-current LIBS = -L${PREFIX}/lib -L/usr/lib -lc -L${X11LIB} -lX11 # Linux/BSD -CFLAGS = -g -Wall -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \ +#CFLAGS = -g -Wall -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \ +# -DVERSION=\"${VERSION}\" +CFLAGS = -O3 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \ -DVERSION=\"${VERSION}\" -LDFLAGS = -g ${LIBS} +#LDFLAGS = -q ${LIBS} +LDFLAGS = ${LIBS} + # Solaris #CFLAGS = -fast -xtarget=ultra ${INCLUDES} -DVERSION=\"${VERSION}\"