madwifi/ath_rate/Makefile
kelmo 4b2cf1393a Remove modules.order files in Makefile clean targets.
Remove kbuild by-products in regression/Makefile. Also allow
regression/tkip/test_tkip.c to compile (too few arguments to function
ieee80211_crypto_demic).

Closes: #1973


git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@3699 0192ed92-7a03-0410-a25b-9323aeb14dbd
2008-06-04 12:25:31 +00:00

31 lines
488 B
Makefile

obj := $(firstword $(obj) $(SUBDIRS) .)
TOP = $(obj)/..
obj-y := amrr/ onoe/ sample/ minstrel/
include $(TOP)/Makefile.inc
.PHONY: modules
modules:
ifdef LINUX24
for i in $(obj-y); do \
$(MAKE) -C $$i || exit 1; \
done
else
$(MAKE) -C $(KERNELPATH) SUBDIRS=$(shell pwd) modules
endif
.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