Files
Ravinder Konka 94266eb2b8 net/embms-kernel : EMBMS Tunneling Module
This module is used to tunnel multicast
packets received on an interface to WLAN
clients which have registered for these
packet streams. Mainly used to tunnel
EMBMS packets received on TMGI streams.

Change-Id: I996077342261ec2cb688e98319c6881d2dd7cce2
Acked-by: Mohit Pahuja <mpahuja@qti.qualcomm.com>
Signed-off-by: Ravinder konka <rkonka@codeaurora.org>
2017-11-01 21:14:43 +05:30

23 lines
413 B
Makefile

#
# Makefile for Embms Kernel module.
#
KERNEL_SRC ?= /lib/modules/$(shell uname -r)/build
obj-m += embms_kernel.o
ccflags-y += -D__CHECK_ENDIAN__
CDEFINES += -D__CHECK_ENDIAN__
KBUILD_CPPFLAGS += $(CDEFINES)
all:
$(MAKE) -C $(KERNEL_SRC) M=$(shell pwd) modules
modules_install:
$(MAKE) INSTALL_MOD_STRIP=1 -C $(KERNEL_SRC) M=$(shell pwd) modules_install
clean:
$(MAKE) -C $(KERNEL_SRC) M=$(PWD) clean