brintos

brintos / linux-shallow public Read only

0
0
Text · 450 B · b56892c Raw
21 lines · plain
1# SPDX-License-Identifier: GPL-2.0-or-later2#3# AMD Address Translation Library Makefile4#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.o11amd_atl-y		+= core.o12amd_atl-y		+= dehash.o13amd_atl-y		+= denormalize.o14amd_atl-y		+= map.o15amd_atl-y		+= system.o16amd_atl-y		+= umc.o17 18amd_atl-$(CONFIG_AMD_ATL_PRM) += prm.o19 20obj-$(CONFIG_AMD_ATL)	+= amd_atl.o21