mirror of
https://github.com/proski/madwifi
synced 2024-11-22 14:31:22 +03:00
4b2cf1393a
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
29 lines
461 B
Makefile
29 lines
461 B
Makefile
obj := $(firstword $(obj) $(SUBDIRS) .)
|
|
TOP = $(obj)/..
|
|
|
|
obj-y := ccmp/ tkip/ wep/
|
|
|
|
include $(TOP)/Makefile.inc
|
|
|
|
modules:
|
|
ifdef LINUX24
|
|
for i in $(obj-y); do \
|
|
$(MAKE) -C $$i || exit 1; \
|
|
done
|
|
else
|
|
$(MAKE) -C $(KERNELPATH) SUBDIRS=$(shell pwd) modules
|
|
endif
|
|
|
|
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
|