diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/net80211/wlanstats/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/tools/net80211/wlanstats/Makefile b/tools/tools/net80211/wlanstats/Makefile index da36495..48df17f 100644 --- a/tools/tools/net80211/wlanstats/Makefile +++ b/tools/tools/net80211/wlanstats/Makefile @@ -1,9 +1,14 @@ # $FreeBSD$ +.include <bsd.compiler.mk> + PROG= wlanstats BINDIR= /usr/local/bin NO_MAN= SRCS= statfoo.c wlanstats.c main.c +.if ${COMPILER_TYPE} == "clang" +CFLAGS+= -fbracket-depth=512 +.endif .include <bsd.prog.mk> |