1# SPDX-License-Identifier: GPL-2.0-only
2################################################################################
3#
4# aQuantia Ethernet Controller AQtion Linux Driver
5# Copyright(c) 2014-2017 aQuantia Corporation.
6#
7# Contact Information: <rdc-drv@aquantia.com>
8# aQuantia Corporation, 105 E. Tasman Dr. San Jose, CA 95134, USA
9#
10################################################################################
11
12#
13# Makefile for the AQtion(tm) Ethernet driver
14#
15
16obj-$(CONFIG_AQTION) += atlantic.o
17
18atlantic-objs := aq_main.o \
19	aq_nic.o \
20	aq_pci_func.o \
21	aq_vec.o \
22	aq_ring.o \
23	aq_hw_utils.o \
24	aq_ethtool.o \
25	aq_drvinfo.o \
26	aq_filters.o \
27	hw_atl/hw_atl_a0.o \
28	hw_atl/hw_atl_b0.o \
29	hw_atl/hw_atl_utils.o \
30	hw_atl/hw_atl_utils_fw2x.o \
31	hw_atl/hw_atl_llh.o
32