########################################################################### 
# RT2400/RT2500 SourceForge Project - http://rt2x00.serialmonkey.com      # 
#                                                                         # 
#   This program is free software; you can redistribute it and/or modify  # 
#   it under the terms of the GNU General Public License as published by  # 
#   the Free Software Foundation; either version 2 of the License, or     # 
#   (at your option) any later version.                                   # 
#                                                                         # 
#   This program is distributed in the hope that it will be useful,       # 
#   but WITHOUT ANY WARRANTY; without even the implied warranty of        # 
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         # 
#   GNU General Public License for more details.                          # 
#                                                                         # 
#   You should have received a copy of the GNU General Public License     # 
#   along with this program; if not, write to the                         # 
#   Free Software Foundation, Inc.,                                       # 
#   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             # 
#                                                                         # 
#   Licensed under the GNU GPL                                            # 
#   Original code supplied under license from RaLink Inc, 2004.           # 
########################################################################### 

########################################################################### 
#      Module Name: Makefile 
#              
#      Abstract: Makefile for rt2500 kernel module 
#              
#      Revision History: 
#      Who             When            What 
#      --------        -----------     ----------------------------- 
#      MarkW           8th  Dec 04     Rewrite of Makefile 
#      AmirS           1st  Jan 05     Update for gmake compat
#      MarkW           20th Jan 05     Fixed permissions on directory
#      MichalL         5th  Mar 05     Module installation fixes
#      MarkW           29th Jul 05     Allow install dir override
########################################################################### 



RESMAN_CORE_OBJS := rtmp_main.o
RESMAN_GLUE_OBJS := mlme.o connect.o sync.o assoc.o auth.o auth_rsp.o rtmp_data.o rtmp_init.o sanity.o rtmp_wep.o wpa.o md5.o rtmp_tkip.o rtmp_info.o eeprom.o

rt2500-objs := $(RESMAN_CORE_OBJS) $(RESMAN_GLUE_OBJS)

obj-$(CONFIG_RT2500) += rt2500.o

EXTRA_CFLAGS += -I$(src)

