From owner-p4-projects@FreeBSD.ORG Sun Nov 7 06:08:32 2004 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id B3CF716A4D0; Sun, 7 Nov 2004 06:08:31 +0000 (GMT) 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 8D8D816A4CE for ; Sun, 7 Nov 2004 06:08:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81D5643D3F for ; Sun, 7 Nov 2004 06:08:31 +0000 (GMT) (envelope-from sam@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id iA768Vb3060790 for ; Sun, 7 Nov 2004 06:08:31 GMT (envelope-from sam@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id iA768VZo060787 for perforce@freebsd.org; Sun, 7 Nov 2004 06:08:31 GMT (envelope-from sam@freebsd.org) Date: Sun, 7 Nov 2004 06:08:31 GMT Message-Id: <200411070608.iA768VZo060787@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 Subject: PERFORCE change 64482 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Nov 2004 06:08:32 -0000 http://perforce.freebsd.org/chv.cgi?CH=64482 Change 64482 by sam@sam_ebb on 2004/11/07 06:08:18 add programs to futz with debug flags symbolically Affected files ... .. //depot/projects/wifi/tools/tools/ath/80211debug.c#1 add .. //depot/projects/wifi/tools/tools/ath/Makefile#2 edit .. //depot/projects/wifi/tools/tools/ath/athdebug.c#1 add Differences ... ==== //depot/projects/wifi/tools/tools/ath/Makefile#2 (text+ko) ==== @@ -26,16 +26,20 @@ # BINDIR= /usr/local/bin -ALL= athstats 80211stats 80211watch +ALL= athstats 80211stats 80211watch athdebug 80211debug all: ${ALL} athstats: athstats.c ${CC} -o athstats athstats.c -lkvm +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 -g kmem -m 2755 athstats ${DESTDIR}${BINDIR} install 80211stats ${DESTDIR}${BINDIR}