diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2009-01-11 21:48:28 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2009-01-11 21:48:28 +0000 |
commit | e2393a32cdf018951efe9ed1d2f6b8031c242185 (patch) | |
tree | 8264bfdf40e2e148e793d8a84006ee98722d313d /app/cwm | |
parent | a256512f56bd055fb76121c53b415c2bca80e957 (diff) |
Add -Wall to CFLAGS, it's helped find a few dodgy constructs.
ok okan@.
Diffstat (limited to 'app/cwm')
-rw-r--r-- | app/cwm/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/cwm/Makefile b/app/cwm/Makefile index e9ec7fe69..09489ee89 100644 --- a/app/cwm/Makefile +++ b/app/cwm/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.13 2009/01/11 18:34:46 okan Exp $ +# $OpenBSD: Makefile,v 1.14 2009/01/11 21:48:27 oga Exp $ .include <bsd.xconf.mk> @@ -10,6 +10,8 @@ SRCS= calmwm.c screen.c xmalloc.c client.c menu.c \ CPPFLAGS+= -I${X11BASE}/include -I${X11BASE}/include/freetype2 -I${.CURDIR} +CFLAGS+= -Wall + LDADD+= -L${X11BASE}/lib -lXft -lXrender -lX11 -lXau -lXdmcp -lXext \ -lfontconfig -lexpat -lfreetype -lz -lXinerama -lXrandr |