X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;ds=sidebyside;f=ath_rate%2Famrr%2FMakefile;h=8350d549cba2231c5081da66df4124186f964743;hb=35db352fc7ecc973a18c949e048e30c4a067e1ba;hp=0280dd8f21f7d31cd3e433f14cc4f5bb42c411db;hpb=d07ba1953dac3b14b5da64d0d25cb483e7a54b94;p=madwifi%2F.git diff --git a/ath_rate/amrr/Makefile b/ath_rate/amrr/Makefile index 0280dd8..8350d54 100644 --- a/ath_rate/amrr/Makefile +++ b/ath_rate/amrr/Makefile @@ -40,10 +40,7 @@ # # Makefile for the Atheros Rate Control Support. # -ifeq ($(obj),) -obj= . -endif - +obj := $(firstword $(obj) $(SUBDIRS) .) TOP = $(obj)/../.. obj-m += ath_rate_amrr.o @@ -51,22 +48,25 @@ ath_rate_amrr-objs := amrr.o include $(TOP)/Makefile.inc -INCS += -I$(TOP) -I$(ATH) -I$(ATH_HAL) -I$(HAL) +INCS += -I$(TOP) -I$(ATH) -I$(HAL) -EXTRA_CFLAGS+= $(INCS) $(COPTS) -DOPT_AH_H=\"public/$(TARGET).opt_ah.h\" +EXTRA_CFLAGS+= $(INCS) $(COPTS) -include $(TOPDIR)/Rules.make +.PHONY: all all: $(MAKE) -C $(KERNELPATH) SUBDIRS=$(shell pwd) modules +.PHONY: install install: test -d $(DESTDIR)/$(KMODPATH) || mkdir -p $(DESTDIR)/$(KMODPATH) install -m 0644 ath_rate_amrr.$(KMODSUF) $(DESTDIR)/$(KMODPATH) +.PHONY: clean clean: -rm -f *~ *.o *.ko *.mod.c - -rm -f .depend .version .*.o.flags .*.o.d .*.o.cmd .*.ko.cmd + -rm -f modules.order .depend .version .*.o.flags .*.o.d .*.o.cmd .*.ko.cmd -rm -rf .tmp_versions ath_rate_amrr.o: $(ath_rate_amrr-objs)