madwifi/regression/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

23 lines
375 B
Makefile

obj := $(firstword $(obj) $(SUBDIRS) .)
TOP = $(obj)/..
obj-y := ccmp/ tkip/ wep/
include $(TOP)/Makefile.inc
modules:
$(MAKE) -C $(KERNELPATH) SUBDIRS=$(shell pwd) modules
install:
for i in $(obj-y); do \
$(MAKE) -C $$i install || exit 1; \
done
clean:
for i in $(obj-y); do \
$(MAKE) -C $$i clean; \
done
rm -f modules.order *.symvers
rm -rf .tmp_versions