madwifi/ath_rate/Makefile
Pavel Roskin 8c73cc55b1 Remove support for Linux kernels older than 2.6.13
Linux 2.6.13 introduced Wireless Extension 18 with WPA support.  It was
released in August 2005.  People making changes to MadWifi should not be
required to be software archeologistists to test their changes.
2013-11-12 11:46:06 -05:00

25 lines
402 B
Makefile

obj := $(firstword $(obj) $(SUBDIRS) .)
TOP = $(obj)/..
obj-y := amrr/ onoe/ sample/ minstrel/
include $(TOP)/Makefile.inc
.PHONY: modules
modules:
$(MAKE) -C $(KERNELPATH) SUBDIRS=$(shell pwd) modules
.PHONY: install
install:
for i in $(obj-y); do \
$(MAKE) -C $$i install || exit 1; \
done
.PHONY: clean
clean:
for i in $(obj-y); do \
$(MAKE) -C $$i clean; \
done
rm -f modules.order