mirror of https://github.com/proski/madwifi
32 lines
735 B
Makefile
32 lines
735 B
Makefile
#
|
|
# Makefile for the CCMP regression test.
|
|
#
|
|
obj := $(firstword $(obj) $(SUBDIRS) .)
|
|
TOP = $(obj)/../..
|
|
|
|
obj-m += ath_test_ccmp.o
|
|
ath_test_ccmp-objs := test_ccmp.o
|
|
|
|
include $(TOP)/Makefile.inc
|
|
|
|
INCS += -I$(TOP) -I$(WLAN)
|
|
|
|
EXTRA_CFLAGS+= $(INCS) $(COPTS)
|
|
|
|
-include $(TOPDIR)/Rules.make
|
|
|
|
all:
|
|
$(MAKE) -C $(KERNELPATH) SUBDIRS=$(shell pwd) modules
|
|
|
|
install:
|
|
test -d $(DESTDIR)/$(KMODPATH) || mkdir -p $(DESTDIR)/$(KMODPATH)
|
|
install -m 0644 ath_test_ccmp.$(KMODSUF) $(DESTDIR)/$(KMODPATH)
|
|
|
|
clean:
|
|
-rm -f *~ *.o *.ko *.mod.c
|
|
-rm -f modules.order .depend .version .*.o.flags .*.o.d .*.o.cmd .*.ko.cmd
|
|
-rm -rf .tmp_versions
|
|
|
|
ath_test_ccmp.o: $(ath_test_ccmp-objs)
|
|
$(LD) $(LDOPTS) -o ath_test_ccmp.$(KMODSUF) -r $(ath_test_ccmp-objs)
|