📄 makefile
字号:
# Makefile for WindNet 802.11b driver.## modification history# --------------------# 01f,14jul03,dxb Added DOC_FILES to allow on-line doc generation.# 01e,08apr03,dxb Added LIB_BASE_NAME for gnu/diab compatibility.# 01d,23oct02,dxb Added LIBNAME and LIBDIRNAME rules for T2.2/Solaris# 01c,10oct02,dxb Removed LIBNAME and LIBDIRNAME for T2.2 compatibility.# 01b,23nov01,dxb Updated comment header.# 01a,16aug01,dxb Updated to include path to h directory.## DESCRIPTION# This file contains the makefile rules for building WindNet 802.11b.TGT_DIR=$(WIND_BASE)/target# Variable to control if Access Point docs should be included# based on whether a corresponding header file existsIS_ACCESSPOINT := $(wildcard $(TGT_DIR)/h/wrn/wlan/intPrismHostAp.h)DOC_FILES = intPrismBridge.c intPrismDownload.c intPrismEnd.c \ intPrismHw.c intPrismTertAp.c intPrismIoctl.c# Add in Access Point docs, if condition matchesifneq ($(IS_ACCESSPOINT),)DOC_FILES += intPrismWDSEnd.c intPrismHostAp.cendifLIB_BASE_NAME=wlanC_SOURCE=$(wildcard *.c) EXTRA_INCLUDE=-I$(TGT_DIR)/h/OBJS=$(C_SOURCE:.c=.o)include $(TGT_DIR)/h/make/rules.library
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -