blob: 3188593ae4f4713d4fdafbab2451d96aebb0db95 [file] [log] [blame]
Sundarajan Srinivasan1b03fe22014-12-02 13:20:56 -08001# Makefile for the clients using the NSS driver
2
3ccflags-y := -I$(obj) -I$(obj)/..
4
5ifneq ($(findstring 3.4, $(KERNELVERSION)),)
6obj-m += qca-nss-tunipip6.o
7obj-m += qca-nss-ipsecmgr.o
8
9ifeq "$(CONFIG_IPV6_SIT_6RD)" "y"
10obj-m += qca-nss-tun6rd.o
11qca-nss-tun6rd-objs := nss_connmgr_tun6rd.o
12ccflags-y += -DNSS_TUN6RD_DEBUG_LEVEL=0
13endif
14
15qca-nss-tunipip6-objs := nss_connmgr_tunipip6.o
16ccflags-y += -DNSS_TUNIPIP6_DEBUG_LEVEL=0
17qca-nss-ipsecmgr-objs := nss_ipsecmgr.o
18ccflags-y += -DNSS_IPSECMGR_DEBUG_LEVEL=3
19endif
20
21obj-y+= profiler/
22
23ifneq ($(findstring 3.4, $(KERNELVERSION)),)
24obj-y+= nss_qdisc/
25obj-y+= capwapmgr/
26endif
27
28obj ?= .
29