⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 PNE 3.3 wlan source code, running at more than vxworks6.x version
💻
字号:
# Makefile for Wind River Wireless Ethernet driver## modification history# --------------------# 01e,31aug05,dxb  Now look for install.h to verify SNMP is installed AND#                  built.# 01d,15aug05,rb  Tweak timestamp for 2.1.1 release# 01c,01jun05,dxb  Added "man" target for Cyclops doc build.# 01b,17aug04,dxb  Added rule to build objects only when SNMP present.# 01a,28apr04,dxb  Created.## DESCRIPTION# This file contains the Makefile rules for building the Wind River# 802dot11 MIB files.TGT_DIR = $(WIND_BASE)/target# If SNMP was installed and built, then install.h should be presentIS_DOT11SNMP := $(wildcard $(TGT_DIR)/h/wrn/wm/common/install.h)# only build the current directory if WIND MANAGE SNMP is presentifneq ($(IS_DOT11SNMP),)LIB_BASE_NAME = wlanC_SOURCE = $(wildcard *.c)OBJS = $(C_SOURCE:.c=.o)include $(TGT_DIR)/h/make/rules.library# if WIND MANAGE SNMP is not available, print a status messageelsedefault :	@echo	@echo SNMP component not available - this directory was not compiled	@echoman :include $(TGT_DIR)/h/make/rules.libraryendif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -