Arunkumar T | 8ebe153 | 2015-06-10 16:01:53 +0530 | [diff] [blame] | 1 | # ################################################### |
| 2 | # # Makefile for the NSS driver |
| 3 | # ################################################### |
| 4 | obj-m += qca-nss-drv.o |
| 5 | |
| 6 | # |
| 7 | # List the files that belong to the driver in alphabetical order. |
| 8 | # |
| 9 | qca-nss-drv-objs := \ |
| 10 | nss_cmn.o \ |
| 11 | nss_core.o \ |
| 12 | nss_crypto.o \ |
| 13 | nss_capwap.o \ |
| 14 | nss_lso_rx.o \ |
| 15 | nss_data_plane.o \ |
| 16 | nss_dynamic_interface.o \ |
| 17 | nss_gre_redir.o \ |
| 18 | nss_if.o \ |
| 19 | nss_init.o \ |
| 20 | nss_ipsec.o \ |
| 21 | nss_ipv4.o \ |
| 22 | nss_ipv4_reasm.o \ |
| 23 | nss_ipv6.o \ |
| 24 | nss_lag.o \ |
| 25 | nss_phys_if.o \ |
| 26 | nss_stats.o \ |
| 27 | nss_tun6rd.o \ |
| 28 | nss_tunipip6.o \ |
| 29 | nss_virt_if.o \ |
| 30 | nss_shaper.o \ |
| 31 | nss_n2h.o \ |
| 32 | nss_log.o \ |
| 33 | nss_eth_rx.o |
| 34 | |
| 35 | |
| 36 | # |
| 37 | # TODO: Deprecated files should be removed before merge |
| 38 | # |
| 39 | qca-nss-drv-objs += nss_tx_rx_virt_if.o |
| 40 | qca-nss-drv-objs += nss_hal/fsm9010/nss_hal_pvt.o |
| 41 | |
| 42 | ccflags-y += -I$(obj)/nss_hal/include |
| 43 | ccflags-y += -I$(obj)/nss_hal/ |
| 44 | ccflags-y += -I$(obj)/exports |
| 45 | ccflags-y += -I$(obj)/nss_hal/fsm9010 |
| 46 | ccflags-y += -DNSS_DEBUG_LEVEL=0 -DNSS_EMPTY_BUFFER_SIZE=1792 -DNSS_PKT_STATS_ENABLED=0 |
| 47 | ccflags-y += -DNSS_DT_SUPPORT=1 -DNSS_PM_SUPPORT=0 -DNSS_FW_DBG_SUPPORT=0 |
| 48 | ccflags-y += -DNSS_PPP_SUPPORT=0 -DNSS_FREQ_SCALE_SUPPORT=0 |
| 49 | |
| 50 | |
| 51 | |
| 52 | |
| 53 | |