Files
Ravinder Konka c71e69eee8 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: Sneha <smaganah@qti.qualcomm.com>
Signed-off-by: Mohammed Javid <mjavid@codeaurora.org>
2018-09-24 05:05:02 -07:00

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