author | R. Bernstein <rocky@gnu.org> | 2023年04月09日 08:26:25 -0400 |
---|---|---|
committer | R. Bernstein <rocky@gnu.org> | 2023年04月09日 09:04:19 -0400 |
commit | 5f797b27d1b73815f27c03e8ee9074e35e37f0e2 (patch) | |
tree | 1b281d978f5d5244d960ab1c9e6215bbf473e5bb | |
parent | 3154dc70d335cb4ad6f3e2b8469cd6da80f9f2ee (diff) | |
download | libcdio-5f797b27d1b73815f27c03e8ee9074e35e37f0e2.tar.gz |
-rw-r--r-- | .gitignore | 7 | ||||
-rw-r--r-- | Makefile.am | 15 |
diff --git a/.gitignore b/.gitignore index 363c116f..584dba56 100644 --- a/.gitignore +++ b/.gitignore @@ -23,13 +23,10 @@ /configure /cov-int /depcomp +/dist /install-sh /libcdio++.pc -/libcdio-*.sig -/libcdio-*.tar.bz2 -/libcdio-*.tar.gz -/libcdio-*.tar.gz.directive -/libcdio-*.tar.gz.directive.asc +/libcdio-* /libcdio.pc /libcdio_cdda.pc /libiso9660++.pc diff --git a/Makefile.am b/Makefile.am index 24769c60..4247a396 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ # Copyright (C) 2003-2004, 2006, 2008, 2011-2013, 2016, 2019 -# Rocky Bernstein <rocky@gnu.org> +# 2023 Rocky Bernstein <rocky@gnu.org> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -27,18 +27,23 @@ EXTRA_DIST = \ MSVC/config.h \ MSVC/libcdio.sln \ MSVC/libcdio.vcproj \ - README.libcdio \ NEWS.md \ + README.libcdio \ THANKS \ example/README \ - libcdio.pc.in \ libcdio++.pc.in \ - libiso9660.pc.in \ + libcdio.pc.in \ libiso9660++.pc.in \ + libiso9660.pc.in \ libudf.pc.in \ make-check-filter.pl \ make-check-filter.rb \ - package/libcdio.spec.in + package/libcdio.spec.in \ + test/README.multiextent \ + $(wildcard test/data/*.bin) \ + $(wildcard test/data/*.cue) \ + $(wildcard test/data/*.iso) \ + $(wildcard test/*.right) SUBDIRS = doc include lib src test example |