10 lines
170 B
Makefile
Executable File
10 lines
170 B
Makefile
Executable File
KERNELDIR=$(KERNEL_DIR)
|
|
|
|
obj-m = ecnt_igmp.o
|
|
|
|
all:
|
|
$(MAKE) -C $(KERNELDIR) M=`pwd` modules
|
|
$(STRIP) --strip-unneeded *.ko
|
|
|
|
clean:
|
|
$(MAKE) -C $(KERNELDIR) M=`pwd` clean
|