📄 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.#DEPTH= ..# 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)stripCC = $(USER_CROSS_COMPILE)gccBINDIR ?= /usr/local/binMANDIR ?= /usr/local/man## Path to the HAL source code.#ifeq ($(HAL),)HAL= $(DEPTH)/halendifINCS= -include $(DEPTH)/include/compat.hALL= athstats 80211stats athkey athchans athctrl \ athdebug 80211debug wlanconfigall: $(ALL)INCS+= -I. -I$(HAL) -I$(DEPTH)CFLAGS= -g -O2 -WallALL_CFLAGS= $(CFLAGS) $(INCS)LDFLAGS=all: $(ALL)athstats: athstats.c $(CC) -o athstats $(ALL_CFLAGS) -I../ath $(LDFLAGS) athstats.c80211stats: 80211stats.c $(CC) -o 80211stats $(ALL_CFLAGS) $(LDFLAGS) 80211stats.cathkey: athkey.c $(CC) -o athkey $(ALL_CFLAGS) $(LDFLAGS) athkey.cathchans: athchans.c $(CC) -o athchans $(ALL_CFLAGS) $(LDFLAGS) athchans.cathctrl: athctrl.c $(CC) -o athctrl $(ALL_CFLAGS) $(LDFLAGS) athctrl.cathdebug: athdebug.c $(CC) -o athdebug $(ALL_CFLAGS) $(LDFLAGS) athdebug.cwlanconfig: wlanconfig.c $(CC) -o wlanconfig $(ALL_CFLAGS) $(LDFLAGS) wlanconfig.c80211debug: 80211debug.c $(CC) -o 80211debug $(ALL_CFLAGS) $(LDFLAGS) 80211debug.cinstall: $(ALL) install -d $(DESTDIR)$(BINDIR) for i in $(ALL); do \ install $$i $(DESTDIR)$(BINDIR)/$$i; \ $(STRIP) $(DESTDIR)$(BINDIR)/$$i; \ done install -d $(DESTDIR)$(MANDIR)/man8 install -m 0644 man/*.8 $(DESTDIR)$(MANDIR)/man8uninstall: for i in $(ALL); do \ rm -f $(DESTDIR)$(BINDIR)/$$i; \ done for i in $(ALL:=.8); do \ rm -f $(DESTDIR)$(MANDIR)/man8/$$i; \ doneclean: rm -f $(ALL) core a.out
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -