1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-13 10:02:38 +00:00

add 80211watch program

This commit is contained in:
Sam Leffler 2004-10-05 19:53:32 +00:00
parent a6229e4ee7
commit 61b14f328b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=136157

View File

@ -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