From owner-p4-projects@FreeBSD.ORG Wed Nov 30 23:40:36 2005 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id B356116A42A; Wed, 30 Nov 2005 23:40:35 +0000 (GMT) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4029016A41F for ; Wed, 30 Nov 2005 23:40:35 +0000 (GMT) (envelope-from sam@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04D9F43D5E for ; Wed, 30 Nov 2005 23:40:24 +0000 (GMT) (envelope-from sam@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id jAUNeLr1079529 for ; Wed, 30 Nov 2005 23:40:21 GMT (envelope-from sam@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jAUNeLQr079526 for perforce@freebsd.org; Wed, 30 Nov 2005 23:40:21 GMT (envelope-from sam@freebsd.org) Date: Wed, 30 Nov 2005 23:40:21 GMT Message-Id: <200511302340.jAUNeLQr079526@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to sam@freebsd.org using -f From: Sam Leffler To: Perforce Change Reviews Cc: Subject: PERFORCE change 87551 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Nov 2005 23:40:38 -0000 http://perforce.freebsd.org/chv.cgi?CH=87551 Change 87551 by sam@sam_ebb on 2005/11/30 23:39:51 o shuffle tools in separate directories so crunchgen is happy o rename 80211 tools to "wlan" as intended long ago Affected files ... .. //depot/projects/wifi/tools/tools/ath/80211debug.c#9 delete .. //depot/projects/wifi/tools/tools/ath/80211stats.c#12 delete .. //depot/projects/wifi/tools/tools/ath/80211watch.c#4 delete .. //depot/projects/wifi/tools/tools/ath/Makefile#6 edit .. //depot/projects/wifi/tools/tools/ath/athdebug.c#5 delete .. //depot/projects/wifi/tools/tools/ath/athdebug/Makefile#1 add .. //depot/projects/wifi/tools/tools/ath/athdebug/athdebug.c#1 add .. //depot/projects/wifi/tools/tools/ath/athstats.c#9 delete .. //depot/projects/wifi/tools/tools/ath/athstats/Makefile#1 add .. //depot/projects/wifi/tools/tools/ath/athstats/athstats.c#1 add .. //depot/projects/wifi/tools/tools/net80211/Makefile#1 add .. //depot/projects/wifi/tools/tools/net80211/wlandebug/Makefile#1 add .. //depot/projects/wifi/tools/tools/net80211/wlandebug/wlandebug.c#1 add .. //depot/projects/wifi/tools/tools/net80211/wlanstats/Makefile#1 add .. //depot/projects/wifi/tools/tools/net80211/wlanstats/wlanstats.c#1 add .. //depot/projects/wifi/tools/tools/net80211/wlanwatch/Makefile#1 add .. //depot/projects/wifi/tools/tools/net80211/wlanwatch/wlanwatch.c#1 add Differences ... ==== //depot/projects/wifi/tools/tools/ath/Makefile#6 (text+ko) ==== @@ -1,51 +1,5 @@ # $FreeBSD: src/tools/tools/ath/Makefile,v 1.5 2004/12/08 17:42:53 sam Exp $ -# -# Copyright (c) 2002, 2003 Sam Leffler, Errno Consulting -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions -# are met: -# 1. Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# 2. Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -# SUCH DAMAGE. -# -BINDIR= /usr/local/bin -ALL= athstats 80211stats 80211watch athdebug 80211debug +SUBDIR= athstats athdebug -all: ${ALL} - -athstats: athstats.c - ${CC} -o athstats athstats.c -athdebug: athdebug.c - ${CC} -o athdebug athdebug.c -80211stats: 80211stats.c - ${CC} -o 80211stats 80211stats.c -80211watch: 80211watch.c - ${CC} -o 80211watch 80211watch.c -80211debug: 80211debug.c - ${CC} -o 80211debug 80211debug.c -install: ${ALL} - install athstats ${DESTDIR}${BINDIR} - install 80211stats ${DESTDIR}${BINDIR} - install 80211watch ${DESTDIR}${BINDIR} - install 80211debug ${DESTDIR}${BINDIR} - install athdebug ${DESTDIR}${BINDIR} - -clean: - rm -f ${ALL} core a.out +.include