X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=ath_rate%2Famrr%2FMakefile;h=8350d549cba2231c5081da66df4124186f964743;hb=35db352fc7ecc973a18c949e048e30c4a067e1ba;hp=966c7f16531cf947c3d9bd34df13fa64142e0efc;hpb=2c0d8db912df58c3a1b506e144e2b5d72edec617;p=madwifi%2F.git diff --git a/ath_rate/amrr/Makefile b/ath_rate/amrr/Makefile index 966c7f1..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 ath_rate_amrr.$(KMODSUF) $(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)