1
0
Files
2016-11-30 09:03:17 +08:00

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