Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0-or-later
2#
3# AMD Address Translation Library Makefile
4#
5# Copyright (c) 2023, Advanced Micro Devices, Inc.
6# All Rights Reserved.
7#
8# Author: Yazen Ghannam <Yazen.Ghannam@amd.com>
9
10amd_atl-y := access.o
11amd_atl-y += core.o
12amd_atl-y += dehash.o
13amd_atl-y += denormalize.o
14amd_atl-y += map.o
15amd_atl-y += system.o
16amd_atl-y += umc.o
17
18amd_atl-$(CONFIG_AMD_ATL_PRM) += prm.o
19
20obj-$(CONFIG_AMD_ATL) += amd_atl.o