diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2009-06-25 07:42:42 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2009-06-25 07:42:42 +0000 |
commit | db5f386bdb8744992bfa96b77b1f6e168a5bc5ef (patch) | |
tree | c2f2c4533e1d462afd6903b14f310e9523c287c8 | |
parent | 93e5aa64a231a1b8835c43719c0db8349303fbb3 (diff) |
diagflags for diags
okay nicm@
-rw-r--r-- | usr.bin/tmux/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/tmux/Makefile b/usr.bin/tmux/Makefile index 6546719af0e..633341dcd02 100644 --- a/usr.bin/tmux/Makefile +++ b/usr.bin/tmux/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2009/06/24 23:32:18 nicm Exp $ +# $OpenBSD: Makefile,v 1.4 2009/06/25 07:42:41 espie Exp $ PROG= tmux SRCS= arg.c attributes.c buffer-poll.c buffer.c cfg.c client-fn.c \ @@ -33,10 +33,10 @@ SRCS= arg.c attributes.c buffer-poll.c buffer.c cfg.c client-fn.c \ tty-write.c tty.c utf8.c window-choose.c window-clock.c \ window-copy.c window-more.c window-scroll.c window.c xmalloc.c -CFLAGS+= -Wno-long-long -Wall -W -Wnested-externs -Wformat=2 -CFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -CFLAGS+= -Wwrite-strings -Wshadow -Wpointer-arith -Wsign-compare -CFLAGS+= -Wundef -Wbad-function-cast -Winline -Wcast-align +CDIAGFLAGS+= -Wno-long-long -Wall -W -Wnested-externs -Wformat=2 +CDIAGFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations +CDIAGFLAGS+= -Wwrite-strings -Wshadow -Wpointer-arith -Wsign-compare +CDIAGFLAGS+= -Wundef -Wbad-function-cast -Winline -Wcast-align LDADD= -lutil -lncurses DPADD= ${LIBUTIL} |