Use decimal notation in a debug message
[madwifi/.git] / ath_rate / onoe / Makefile.kernel
1 #
2 # Makefile for Atsushi Onoe's rate control algorithm.
3 #
4 # $Id: //depot/sw/linuxsrc/src/802_11/madwifi/madwifi/ath_rate/onoe/Makefile.kernel#1 $
5 #
6
7 src ?= .
8 srctree ?= .
9
10 TOP = $(srctree)/$(src)/../..
11
12 include $(TOP)/BuildCaps.inc
13
14 ATH=    $(TOP)/ath
15 COMPAT= $(TOP)/include
16 HAL=    $(TOP)/ath_hal
17
18 INCS = -include $(COMPAT)/compat.h -I$(COMPAT)
19 INCS += -I$(TOP) -I$(ATH) -I$(HAL)
20 EXTRA_CFLAGS += $(INCS) $(COPTS)
21
22 ifneq ($(VERSION).$(PATCHLEVEL),2.4)
23 obj-$(CONFIG_ATHEROS) += ath_rate_onoe.o
24 ath_rate_onoe-objs      := onoe.o
25 endif
26
27 ifeq ($(VERSION).$(PATCHLEVEL),2.4)
28 obj-$(CONFIG_ATHEROS) := onoe.o
29
30 export-objs     := onoe.o
31 list-multi      := ath_rate_onoe.o
32
33 O_TARGET        := ath_rate.o
34 include $(TOPDIR)/Rules.make
35 endif