1*600f14f4SXin Li# test_libs_common - Common code to library unit tests 2*600f14f4SXin Li# Copyright (C) 2000-2009 Josh Coalson 3*600f14f4SXin Li# Copyright (C) 2011-2023 Xiph.Org Foundation 4*600f14f4SXin Li# 5*600f14f4SXin Li# This program is free software; you can redistribute it and/or 6*600f14f4SXin Li# modify it under the terms of the GNU General Public License 7*600f14f4SXin Li# as published by the Free Software Foundation; either version 2 8*600f14f4SXin Li# of the License, or (at your option) any later version. 9*600f14f4SXin Li# 10*600f14f4SXin Li# This program is distributed in the hope that it will be useful, 11*600f14f4SXin Li# but WITHOUT ANY WARRANTY; without even the implied warranty of 12*600f14f4SXin Li# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13*600f14f4SXin Li# GNU General Public License for more details. 14*600f14f4SXin Li# 15*600f14f4SXin Li# You should have received a copy of the GNU General Public License along 16*600f14f4SXin Li# with this program; if not, write to the Free Software Foundation, Inc., 17*600f14f4SXin Li# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 18*600f14f4SXin Li 19*600f14f4SXin LiAM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include 20*600f14f4SXin Li 21*600f14f4SXin Linoinst_LTLIBRARIES = libtest_libs_common.la 22*600f14f4SXin Li 23*600f14f4SXin Lilibtest_libs_common_la_SOURCES = \ 24*600f14f4SXin Li file_utils_flac.c \ 25*600f14f4SXin Li metadata_utils.c 26*600f14f4SXin Li 27*600f14f4SXin LiEXTRA_DIST = \ 28*600f14f4SXin Li CMakeLists.txt \ 29*600f14f4SXin Li README 30