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