diff options
author | Anselm R. Garbe <garbeam@wmii.de> | 2006-07-13 01:55:54 +0200 |
---|---|---|
committer | Anselm R. Garbe <garbeam@wmii.de> | 2006-07-13 01:55:54 +0200 |
commit | d7e17087ed2fc5eed57efa03e81460e3e41f7238 (patch) | |
tree | efaa34fdd54e485be21c5e98f617678a61e4a9e1 /config.mk | |
parent | 8b59083eb13c0712e04d9a5b6d7bf4af5913c442 (diff) | |
download | dwm-d7e17087ed2fc5eed57efa03e81460e3e41f7238.tar.gz |
new stuff (some warning elimination)
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/config.mk b/config.mk index 41cb070..9857f93 100644 --- a/config.mk +++ b/config.mk @@ -14,9 +14,14 @@ VERSION = 0.0 LIBS = -L${PREFIX}/lib -L/usr/lib -lc -lm -L${X11LIB} -lX11 # Linux/BSD -CFLAGS = -g -Wall -O2 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \ +CFLAGS = -Os -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \ -DVERSION=\"${VERSION}\" -LDFLAGS = -g ${LIBS} +LDFLAGS = ${LIBS} +#CFLAGS += -W -Wstrict-prototypes -Wpointer-arith -Wcast-align -Wcast-qual -Wshadow -Waggregate-return -Wnested-externs -Winline -Wwrite-strings -Wundef -Wsign-compare -Wmissing-prototypes -Wredundant-decls + +#CFLAGS = -g -Wall -O2 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \ +# -DVERSION=\"${VERSION}\" +#LDFLAGS = -g ${LIBS} # Solaris #CFLAGS = -fast -xtarget=ultra ${INCLUDES} -DVERSION=\"${VERSION}\" |