mirror of
https://github.com/proski/madwifi
synced 2024-11-21 14:01:54 +03:00
8b13bec8b1
It's a dangerous program that should be distributed separately from MadWifi, with its own README full of serious warnings. ath_info is not even using MadWifi, it writes to the hardware registers directly. ath_info is definitely not needed to use MadWifi. It could help with the development, but so could Wireshark and many other programs that are not part of MadWifi.
99 lines
3.3 KiB
Makefile
99 lines
3.3 KiB
Makefile
# $FreeBSD: src/tools/tools/ath/Makefile,v 1.3 2003/12/07 21:38:44 sam Exp $
|
|
#
|
|
# Copyright (c) 2002-2005 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.
|
|
#
|
|
TOP = ..
|
|
|
|
# USER_CROSS_COMPILE is a string that is prepended to all toolchain
|
|
# executables, such as gcc, ld, as, objcopy etc. This is used for
|
|
# cross-compiling userspace binaries. If not defined, CROSS_COMPILE
|
|
# is used.
|
|
USER_CROSS_COMPILE ?= $(CROSS_COMPILE)
|
|
STRIP ?= $(USER_CROSS_COMPILE)strip
|
|
CC = $(USER_CROSS_COMPILE)gcc
|
|
|
|
BINDIR ?= /usr/local/bin
|
|
MANDIR ?= /usr/local/man
|
|
|
|
#
|
|
# Path to the HAL source code.
|
|
#
|
|
ifeq ($(HAL),)
|
|
HAL = $(TOP)/ath_hal
|
|
endif
|
|
|
|
|
|
PROGRAMS = athstats 80211stats athkey athchans athctrl \
|
|
athdebug 80211debug wlanconfig wpakey
|
|
|
|
INCS = -I. -I$(HAL) -I$(TOP)
|
|
CFLAGS = -g -O2 -Wall
|
|
ALL_CFLAGS = $(CFLAGS) $(INCS)
|
|
LDFLAGS =
|
|
|
|
all: $(PROGRAMS)
|
|
|
|
athstats: athstats.c
|
|
$(CC) -o athstats $(ALL_CFLAGS) -I$(TOP)/ath $(LDFLAGS) athstats.c
|
|
80211stats: 80211stats.c
|
|
$(CC) -o 80211stats $(ALL_CFLAGS) $(LDFLAGS) 80211stats.c
|
|
athkey: athkey.c
|
|
$(CC) -o athkey $(ALL_CFLAGS) $(LDFLAGS) athkey.c
|
|
athchans: athchans.c
|
|
$(CC) -o athchans $(ALL_CFLAGS) $(LDFLAGS) athchans.c
|
|
athctrl: athctrl.c
|
|
$(CC) -o athctrl $(ALL_CFLAGS) $(LDFLAGS) athctrl.c
|
|
athdebug: athdebug.c
|
|
$(CC) -o athdebug $(ALL_CFLAGS) $(LDFLAGS) athdebug.c
|
|
wlanconfig: wlanconfig.c
|
|
$(CC) -o wlanconfig $(ALL_CFLAGS) $(LDFLAGS) wlanconfig.c
|
|
80211debug: 80211debug.c
|
|
$(CC) -o 80211debug $(ALL_CFLAGS) $(LDFLAGS) 80211debug.c
|
|
wpakey: wpakey.c
|
|
$(CC) -o wpakey $(ALL_CFLAGS) $(LDFLAGS) wpakey.c
|
|
|
|
install: all
|
|
install -d $(DESTDIR)$(BINDIR)
|
|
for i in $(PROGRAMS); do \
|
|
install $$i $(DESTDIR)$(BINDIR)/$$i; \
|
|
$(STRIP) $(DESTDIR)$(BINDIR)/$$i; \
|
|
done
|
|
install -d $(DESTDIR)$(MANDIR)/man8
|
|
install -m 0644 man/*.8 $(DESTDIR)$(MANDIR)/man8
|
|
install $(TOP)/scripts/madwifi-unload $(DESTDIR)$(BINDIR)/madwifi-unload
|
|
|
|
uninstall:
|
|
for i in $(PROGRAMS); do \
|
|
rm -f $(DESTDIR)$(BINDIR)/$$i; \
|
|
done
|
|
for i in $(PROGRAMS:=.8); do \
|
|
rm -f $(DESTDIR)$(MANDIR)/man8/$$i; \
|
|
done
|
|
|
|
clean:
|
|
rm -f $(PROGRAMS) core a.out
|
|
|
|
.PHONY: all clean install uninstall
|