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

📄 makefile.rdc

📁 Ralink RT61 SoftAP Driver source code. RT61:MiniPCI
💻 RDC
字号:
#################################################################################
 # Ralink Technology, Inc.	                                         	#
 # 4F, No. 2 Technology 5th Rd.                                          	#
 # Science-based Industrial Park                                         	#
 # Hsin-chu, Taiwan, R.O.C.                                              	#
 #                                                                       	#
 # (c) Copyright 2005, Ralink Technology, Inc.                           	#
 #                                                                       	#
 # All rights reserved. Ralink's source code is an unpublished work and the	#
 # use of a copyright notice does not imply otherwise. This source code		#
 # contains confidential trade secret material of Ralink Tech. Any attempt	#
 # or participation in deciphering, decoding, reverse engineering or in any	#
 # way altering the source code is stricitly prohibited, unless the prior	#
 # written consent of Ralink Technology, Inc. is obtained.			#
#################################################################################

export RALINK_CFLAGS

# Support AP client function
#HAS_APCLIENT=y

RALINK_WFLAGS := -Wno-unused -O2 -DMBSS_SUPPORT -DAGGREGATION_SUPPORT -DWDS_SUPPORT -DWMM_SUPPORT
RALINK_CFLAGS := -fomit-frame-pointer -DRTMP_EMBEDDED -DRALINK_ATE -DLinux
#RALINK_WFLAGS += -DDBG
#RALINK_WFLAGS += -DSNMP

ifeq ($(HAS_APCLIENT),y)
RALINK_WFLAGS += -DAPCLI_SUPPORT
endif

EXTRA_CFLAGS += $(RALINK_WFLAGS) $(RALINK_CFLAGS)

O_TARGET := rt61ap.o

obj-y +=  rtmp_main.o rtmp_task.o mlme.o connect.o sync.o assoc.o auth.o auth_rsp.o rtmp_data.o rtmp_init.o	sanity.o rtmp_wep.o rtmp_info.o	eeprom.o rtmp_tkip.o wpa.o md5.o soft_ap.o dls.o
          
ifeq ($(HAS_APCLIENT),y)
obj-y += 	sta_auth.o	\
			sta_assoc.o	\
			sta_sync.o	\
			sta_ctrl.o	\
			rtmp_apcli.o	\
			rtmp_apcli_iparp.o	\
			rtmp_apcli_pppoe.o	\
			sta_mlme.o
endif
		
include $(TOPDIR)/Rules.make

⌨️ 快捷键说明

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