diff options
author | sam <sam@FreeBSD.org> | 2004-10-05 19:53:32 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2004-10-05 19:53:32 +0000 |
commit | c5a66f8d8b92ad820a2d8322268e3d9f56b196e6 (patch) | |
tree | 53f5173e510d48956e4e41827f5971382f65ed2b /tools | |
parent | c42407335a7ca00d58d860d42a3fe62bb8f0b2f1 (diff) | |
download | FreeBSD-src-c5a66f8d8b92ad820a2d8322268e3d9f56b196e6.zip FreeBSD-src-c5a66f8d8b92ad820a2d8322268e3d9f56b196e6.tar.gz |
add 80211watch program
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/ath/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/tools/ath/Makefile b/tools/tools/ath/Makefile index e7dc3a5..e0f8ff0 100644 --- a/tools/tools/ath/Makefile +++ b/tools/tools/ath/Makefile @@ -26,7 +26,7 @@ # BINDIR= /usr/local/bin -ALL= athstats 80211stats +ALL= athstats 80211stats 80211watch all: ${ALL} @@ -34,9 +34,12 @@ athstats: athstats.c ${CC} -o athstats athstats.c -lkvm 80211stats: 80211stats.c ${CC} -o 80211stats 80211stats.c +80211watch: 80211watch.c + ${CC} -o 80211watch 80211watch.c install: ${ALL} install -g kmem -m 2755 athstats ${DESTDIR}${BINDIR} install 80211stats ${DESTDIR}${BINDIR} + install 80211watch ${DESTDIR}${BINDIR} clean: rm -f ${ALL} core a.out |