1*5c06c1dfSSamson Tam# 2*5c06c1dfSSamson Tam# Copyright 2017 Advanced Micro Devices, Inc. 3*5c06c1dfSSamson Tam# 4*5c06c1dfSSamson Tam# Permission is hereby granted, free of charge, to any person obtaining a 5*5c06c1dfSSamson Tam# copy of this software and associated documentation files (the "Software"), 6*5c06c1dfSSamson Tam# to deal in the Software without restriction, including without limitation 7*5c06c1dfSSamson Tam# the rights to use, copy, modify, merge, publish, distribute, sublicense, 8*5c06c1dfSSamson Tam# and/or sell copies of the Software, and to permit persons to whom the 9*5c06c1dfSSamson Tam# Software is furnished to do so, subject to the following conditions: 10*5c06c1dfSSamson Tam# 11*5c06c1dfSSamson Tam# The above copyright notice and this permission notice shall be included in 12*5c06c1dfSSamson Tam# all copies or substantial portions of the Software. 13*5c06c1dfSSamson Tam# 14*5c06c1dfSSamson Tam# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15*5c06c1dfSSamson Tam# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16*5c06c1dfSSamson Tam# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17*5c06c1dfSSamson Tam# THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 18*5c06c1dfSSamson Tam# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19*5c06c1dfSSamson Tam# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20*5c06c1dfSSamson Tam# OTHER DEALINGS IN THE SOFTWARE. 21*5c06c1dfSSamson Tam# 22*5c06c1dfSSamson Tam# 23*5c06c1dfSSamson Tam# Makefile for the 'spl' sub-component of DAL. 24*5c06c1dfSSamson Tam# It provides the scaling library interface. 25*5c06c1dfSSamson Tam 26*5c06c1dfSSamson TamSPL = dc_spl.o dc_spl_scl_filters.o dc_spl_scl_easf_filters.o dc_spl_isharp_filters.o dc_spl_filters.o spl_fixpt31_32.o spl_custom_float.o 27*5c06c1dfSSamson Tam 28*5c06c1dfSSamson TamAMD_DAL_SPL = $(addprefix $(AMDDALPATH)/dc/sspl/,$(SPL)) 29*5c06c1dfSSamson Tam 30*5c06c1dfSSamson TamAMD_DISPLAY_FILES += $(AMD_DAL_SPL) 31*5c06c1dfSSamson Tam 32*5c06c1dfSSamson Tam 33*5c06c1dfSSamson Tam 34