From 6b05bc51f7ceb77e70fe804ee15318d7c6258e4f Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Fri, 8 Jun 2001 00:13:21 +0000 Subject: add/update copyright and license notices --- Makefile.am | 17 ++++++++++++++ Makefile.lite | 17 ++++++++++++++ README | 37 ++++++++++++++++++++++++++----- build/exe.mk | 17 ++++++++++++++ build/lib.mk | 17 ++++++++++++++ configure.in | 17 ++++++++++++++ doc/Makefile.am | 17 ++++++++++++++ doc/comparison.html | 8 +++++++ doc/developers.html | 8 +++++++ doc/documentation.html | 8 +++++++ doc/download.html | 8 +++++++ doc/features.html | 8 +++++++ doc/format.html | 8 +++++++ doc/goals.html | 8 +++++++ doc/id.html | 8 +++++++ doc/images/Makefile.am | 17 ++++++++++++++ doc/index.html | 8 +++++++ doc/news.html | 8 +++++++ include/FLAC/Makefile.am | 17 ++++++++++++++ include/Makefile.am | 18 +++++++++++++++ man/Makefile.am | 17 ++++++++++++++ src/Makefile.am | 17 ++++++++++++++ src/flac/Makefile.am | 17 ++++++++++++++ src/flac/Makefile.lite | 17 ++++++++++++++ src/flac/Makefile.vc | 17 ++++++++++++++ src/libFLAC/Makefile.am | 18 +++++++++++++++ src/libFLAC/Makefile.lite | 18 +++++++++++++++ src/libFLAC/Makefile.vc | 18 +++++++++++++++ src/libFLAC/i386/Makefile.am | 18 +++++++++++++++ src/libFLAC/include/Makefile.am | 18 +++++++++++++++ src/libFLAC/include/private/Makefile.am | 18 +++++++++++++++ src/libFLAC/include/protected/Makefile.am | 18 +++++++++++++++ src/metaflac/Makefile.am | 17 ++++++++++++++ src/metaflac/Makefile.lite | 17 ++++++++++++++ src/metaflac/Makefile.vc | 17 ++++++++++++++ src/plugin_winamp2/Makefile.am | 17 ++++++++++++++ src/plugin_winamp2/Makefile.vc | 17 ++++++++++++++ src/plugin_winamp3/Makefile.am | 17 ++++++++++++++ src/plugin_winamp3/Makefile.vc | 17 ++++++++++++++ src/plugin_winamp3/in_flac.cpp | 1 + src/plugin_xmms/Makefile.am | 17 ++++++++++++++ src/plugin_xmms/Makefile.lite | 17 ++++++++++++++ src/test_streams/Makefile.am | 17 ++++++++++++++ src/test_streams/Makefile.lite | 17 ++++++++++++++ src/test_unit/Makefile.am | 17 ++++++++++++++ src/test_unit/Makefile.lite | 17 ++++++++++++++ test/Makefile.am | 17 ++++++++++++++ test/Makefile.lite | 17 ++++++++++++++ test/test_bins.sh | 17 ++++++++++++++ test/test_streams.sh | 17 ++++++++++++++ test/test_unit.sh | 17 ++++++++++++++ 51 files changed, 784 insertions(+), 5 deletions(-) diff --git a/Makefile.am b/Makefile.am index 05526d21..88fe95b2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,20 @@ +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001 Josh Coalson +# +# This program is part of FLAC; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + # # automake provides the following useful targets: # diff --git a/Makefile.lite b/Makefile.lite index 92adb87c..ce949ecc 100644 --- a/Makefile.lite +++ b/Makefile.lite @@ -1,3 +1,20 @@ +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001 Josh Coalson +# +# This program is part of FLAC; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + # # GNU Makefile # diff --git a/README b/README index d3fe143a..667d528f 100644 --- a/README +++ b/README @@ -1,12 +1,39 @@ +/* FLAC - Free Lossless Audio Codec + * Copyright (C) 2001 Josh Coalson + * + * This program is part of FLAC; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + + +FLAC (http://flac.sourceforge.net/) is an Open Source lossless audio +codec developed by Josh Coalson. + +FLAC is comprised of 1) `libFLAC', a library which implements +reference encoders and decoders, licensed under the GNU Lesser +General Public License (LGPL); 2) `flac', a command-line program for +encoding and decoding files, licensed under the GNU General public +License (GPL); 3) `metaflac', a command-line program for editing +FLAC metadata, licensed under the GPL; 4) player plugins for XMMS +and Winamp, licensed under the GPL; and 5) documentation, licensed +under the GNU Free Documentation License. + =========== FLAC - 0.10 =========== -This is the source release for the FLAC project. The -reference encoder/decoder library 'libFLAC' is released -under the LGPL (see COPYING.LGPL). This means the code -in include/FLAC/ and src/libFLAC/. All other code is -covered by the GPL (see COPYING.GPL). See +This is the source release for the FLAC project. See doc/index.html diff --git a/build/exe.mk b/build/exe.mk index 834535f1..50a78032 100644 --- a/build/exe.mk +++ b/build/exe.mk @@ -1,3 +1,20 @@ +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001 Josh Coalson +# +# This program is part of FLAC; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + # # GNU makefile fragment for building an executable # diff --git a/build/lib.mk b/build/lib.mk index 5e986f0d..78efe3c3 100644 --- a/build/lib.mk +++ b/build/lib.mk @@ -1,3 +1,20 @@ +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001 Josh Coalson +# +# This program is part of FLAC; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + # # GNU makefile fragment for building a library # diff --git a/configure.in b/configure.in index bef1b8e2..e1a94f25 100644 --- a/configure.in +++ b/configure.in @@ -1,3 +1,20 @@ +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001 Josh Coalson +# +# This program is part of FLAC; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + # NOTE that for many of the AM_CONDITIONALs we use the prefix FLaC__ # instead of FLAC__ since autoconf triggers off 'AC_' in strings diff --git a/doc/Makefile.am b/doc/Makefile.am index 372cdb81..3011f428 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,3 +1,20 @@ +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001 Josh Coalson +# +# This program is part of FLAC; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + SUBDIRS = . images EXTRA_DIST = comparison.html \ diff --git a/doc/comparison.html b/doc/comparison.html index 35ce4e7b..6df66ebd 100644 --- a/doc/comparison.html +++ b/doc/comparison.html @@ -1,4 +1,10 @@ + + + + + + FLAC - comparison @@ -800,5 +806,7 @@ +

nbsp;Copyright (c) 2000,2001 Josh Coalson

+ diff --git a/doc/developers.html b/doc/developers.html index e461b2fb..b131bc0a 100644 --- a/doc/developers.html +++ b/doc/developers.html @@ -1,4 +1,10 @@ + + + + + + FLAC - developers @@ -103,5 +109,7 @@ +

nbsp;Copyright (c) 2000,2001 Josh Coalson

+ diff --git a/doc/documentation.html b/doc/documentation.html index 8d3e97be..69cbe681 100644 --- a/doc/documentation.html +++ b/doc/documentation.html @@ -1,4 +1,10 @@ + + + + + + FLAC - documentation @@ -742,5 +748,7 @@ +

nbsp;Copyright (c) 2000,2001 Josh Coalson

+ diff --git a/doc/download.html b/doc/download.html index f81e1121..0ee60848 100644 --- a/doc/download.html +++ b/doc/download.html @@ -1,4 +1,10 @@ + + + + + + FLAC - download @@ -68,5 +74,7 @@ +

nbsp;Copyright (c) 2000,2001 Josh Coalson

+ diff --git a/doc/features.html b/doc/features.html index c82de51d..2988aee4 100644 --- a/doc/features.html +++ b/doc/features.html @@ -1,4 +1,10 @@ + + + + + + FLAC - features @@ -139,5 +145,7 @@ +

nbsp;Copyright (c) 2000,2001 Josh Coalson

+ diff --git a/doc/format.html b/doc/format.html index b90d3515..629141f6 100644 --- a/doc/format.html +++ b/doc/format.html @@ -1,4 +1,10 @@ + + + + + + FLAC - format @@ -1281,5 +1287,7 @@ +

nbsp;Copyright (c) 2000,2001 Josh Coalson

+ diff --git a/doc/goals.html b/doc/goals.html index 3bf4be0d..aa1549dd 100644 --- a/doc/goals.html +++ b/doc/goals.html @@ -1,4 +1,10 @@ + + + + + + FLAC - goals @@ -109,5 +115,7 @@ +

nbsp;Copyright (c) 2000,2001 Josh Coalson

+ diff --git a/doc/id.html b/doc/id.html index 5fb4d252..b9b75da0 100644 --- a/doc/id.html +++ b/doc/id.html @@ -1,4 +1,10 @@ + + + + + + FLAC - id @@ -156,5 +162,7 @@ +

nbsp;Copyright (c) 2000,2001 Josh Coalson

+ diff --git a/doc/images/Makefile.am b/doc/images/Makefile.am index 4d523268..4d2059c1 100644 --- a/doc/images/Makefile.am +++ b/doc/images/Makefile.am @@ -1,3 +1,20 @@ +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001 Josh Coalson +# +# This program is part of FLAC; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + EXTRA_DIST = 1x1.gif \ cafebug.gif \ logo.jpg diff --git a/doc/index.html b/doc/index.html index deb45cd8..63d69f58 100644 --- a/doc/index.html +++ b/doc/index.html @@ -1,4 +1,10 @@ + + + + + + FLAC - Free Lossless Audio Codec @@ -273,5 +279,7 @@ etree.org? +

nbsp;Copyright (c) 2000,2001 Josh Coalson

+ diff --git a/doc/news.html b/doc/news.html index e5f1486b..36ef28b8 100644 --- a/doc/news.html +++ b/doc/news.html @@ -1,4 +1,10 @@ + + + + + + FLAC - news @@ -206,5 +212,7 @@ +

nbsp;Copyright (c) 2000,2001 Josh Coalson

+ diff --git a/include/FLAC/Makefile.am b/include/FLAC/Makefile.am index 172f5bbc..7bfd4f7e 100644 --- a/include/FLAC/Makefile.am +++ b/include/FLAC/Makefile.am @@ -1,3 +1,20 @@ +# flac - Command-line FLAC encoder/decoder +# Copyright (C) 2000,2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + includedir = ${prefix}/include/FLAC include_HEADERS = all.h \ diff --git a/include/Makefile.am b/include/Makefile.am index c16e944d..77add5db 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -1 +1,19 @@ +# libFLAC - Free Lossless Audio Codec library +# Copyright (C) 2001 Josh Coalson +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Library General Public +# License as published by the Free Software Foundation; either +# version 2 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Library General Public License for more details. +# +# You should have received a copy of the GNU Library General Public +# License along with this library; if not, write to the +# Free Software Foundation, Inc., 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. + SUBDIRS = FLAC diff --git a/man/Makefile.am b/man/Makefile.am index 5ecbf6a0..747e418a 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -1,3 +1,20 @@ +# flac - Command-line FLAC encoder/decoder +# Copyright (C) 2000,2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + flac.1: flac.sgml docbook-to-man $< > $@ diff --git a/src/Makefile.am b/src/Makefile.am index 4908ebd0..6d2cd9dd 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,3 +1,20 @@ +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001 Josh Coalson +# +# This program is part of FLAC; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + if FLaC__HAS_XMMS XMMS_DIRS = plugin_xmms endif diff --git a/src/flac/Makefile.am b/src/flac/Makefile.am index 849f22a0..5d762d03 100644 --- a/src/flac/Makefile.am +++ b/src/flac/Makefile.am @@ -1,3 +1,20 @@ +# flac - Command-line FLAC encoder/decoder +# Copyright (C) 2000,2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + bin_PROGRAMS = flac CFLAGS = @CFLAGS@ diff --git a/src/flac/Makefile.lite b/src/flac/Makefile.lite index 2ee8a100..40b55fa2 100644 --- a/src/flac/Makefile.lite +++ b/src/flac/Makefile.lite @@ -1,3 +1,20 @@ +# flac - Command-line FLAC encoder/decoder +# Copyright (C) 2000,2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + # # GNU makefile # diff --git a/src/flac/Makefile.vc b/src/flac/Makefile.vc index 68d97102..9706fc62 100644 --- a/src/flac/Makefile.vc +++ b/src/flac/Makefile.vc @@ -1,3 +1,20 @@ +# flac - Command-line FLAC encoder/decoder +# Copyright (C) 2000,2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + !include !IFDEF DEBUG diff --git a/src/libFLAC/Makefile.am b/src/libFLAC/Makefile.am index e062d6c9..c5223bd2 100644 --- a/src/libFLAC/Makefile.am +++ b/src/libFLAC/Makefile.am @@ -1,3 +1,21 @@ +# libFLAC - Free Lossless Audio Codec library +# Copyright (C) 2001 Josh Coalson +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Library General Public +# License as published by the Free Software Foundation; either +# version 2 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Library General Public License for more details. +# +# You should have received a copy of the GNU Library General Public +# License along with this library; if not, write to the +# Free Software Foundation, Inc., 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. + # # GNU makefile # diff --git a/src/libFLAC/Makefile.lite b/src/libFLAC/Makefile.lite index c9c5e5f7..635fed27 100644 --- a/src/libFLAC/Makefile.lite +++ b/src/libFLAC/Makefile.lite @@ -1,3 +1,21 @@ +# libFLAC - Free Lossless Audio Codec library +# Copyright (C) 2001 Josh Coalson +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Library General Public +# License as published by the Free Software Foundation; either +# version 2 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Library General Public License for more details. +# +# You should have received a copy of the GNU Library General Public +# License along with this library; if not, write to the +# Free Software Foundation, Inc., 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. + # # GNU makefile # diff --git a/src/libFLAC/Makefile.vc b/src/libFLAC/Makefile.vc index e755fa8e..4ac2afff 100644 --- a/src/libFLAC/Makefile.vc +++ b/src/libFLAC/Makefile.vc @@ -1,3 +1,21 @@ +# libFLAC - Free Lossless Audio Codec library +# Copyright (C) 2001 Josh Coalson +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Library General Public +# License as published by the Free Software Foundation; either +# version 2 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Library General Public License for more details. +# +# You should have received a copy of the GNU Library General Public +# License along with this library; if not, write to the +# Free Software Foundation, Inc., 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. + !include NASM=nasmw diff --git a/src/libFLAC/i386/Makefile.am b/src/libFLAC/i386/Makefile.am index 689720d9..55ddad50 100644 --- a/src/libFLAC/i386/Makefile.am +++ b/src/libFLAC/i386/Makefile.am @@ -1,3 +1,21 @@ +# libFLAC - Free Lossless Audio Codec library +# Copyright (C) 2001 Josh Coalson +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Library General Public +# License as published by the Free Software Foundation; either +# version 2 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Library General Public License for more details. +# +# You should have received a copy of the GNU Library General Public +# License along with this library; if not, write to the +# Free Software Foundation, Inc., 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. + # nasm build rule: %.lo: %.s $(NASM) -f elf -d ELF $< -o $@ diff --git a/src/libFLAC/include/Makefile.am b/src/libFLAC/include/Makefile.am index 64948e4c..3f0fdcb1 100644 --- a/src/libFLAC/include/Makefile.am +++ b/src/libFLAC/include/Makefile.am @@ -1 +1,19 @@ +# libFLAC - Free Lossless Audio Codec library +# Copyright (C) 2001 Josh Coalson +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Library General Public +# License as published by the Free Software Foundation; either +# version 2 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Library General Public License for more details. +# +# You should have received a copy of the GNU Library General Public +# License along with this library; if not, write to the +# Free Software Foundation, Inc., 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. + SUBDIRS = private protected diff --git a/src/libFLAC/include/private/Makefile.am b/src/libFLAC/include/private/Makefile.am index 0a04d1d5..a3bc2b16 100644 --- a/src/libFLAC/include/private/Makefile.am +++ b/src/libFLAC/include/private/Makefile.am @@ -1,3 +1,21 @@ +# libFLAC - Free Lossless Audio Codec library +# Copyright (C) 2001 Josh Coalson +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Library General Public +# License as published by the Free Software Foundation; either +# version 2 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Library General Public License for more details. +# +# You should have received a copy of the GNU Library General Public +# License along with this library; if not, write to the +# Free Software Foundation, Inc., 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. + noinst_HEADERS = bitbuffer.h \ all.h \ bitmath.h \ diff --git a/src/libFLAC/include/protected/Makefile.am b/src/libFLAC/include/protected/Makefile.am index 09f8c73d..7dd42166 100644 --- a/src/libFLAC/include/protected/Makefile.am +++ b/src/libFLAC/include/protected/Makefile.am @@ -1 +1,19 @@ +# libFLAC - Free Lossless Audio Codec library +# Copyright (C) 2001 Josh Coalson +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Library General Public +# License as published by the Free Software Foundation; either +# version 2 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Library General Public License for more details. +# +# You should have received a copy of the GNU Library General Public +# License along with this library; if not, write to the +# Free Software Foundation, Inc., 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. + noinst_HEADERS = stream_decoder.h diff --git a/src/metaflac/Makefile.am b/src/metaflac/Makefile.am index a06972e6..e1285a21 100644 --- a/src/metaflac/Makefile.am +++ b/src/metaflac/Makefile.am @@ -1,3 +1,20 @@ +# metaflac - Command-line FLAC metadata editor +# Copyright (C) 2000,2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + bin_PROGRAMS = metaflac CFLAGS = @CFLAGS@ diff --git a/src/metaflac/Makefile.lite b/src/metaflac/Makefile.lite index 11c5be9d..537d12ef 100644 --- a/src/metaflac/Makefile.lite +++ b/src/metaflac/Makefile.lite @@ -1,3 +1,20 @@ +# metaflac - Command-line FLAC metadata editor +# Copyright (C) 2000,2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + # # GNU makefile # diff --git a/src/metaflac/Makefile.vc b/src/metaflac/Makefile.vc index 239aefac..f9994ea7 100644 --- a/src/metaflac/Makefile.vc +++ b/src/metaflac/Makefile.vc @@ -1,3 +1,20 @@ +# metaflac - Command-line FLAC metadata editor +# Copyright (C) 2000,2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + !include !IFDEF DEBUG diff --git a/src/plugin_winamp2/Makefile.am b/src/plugin_winamp2/Makefile.am index 8b5cf357..57de4137 100644 --- a/src/plugin_winamp2/Makefile.am +++ b/src/plugin_winamp2/Makefile.am @@ -1,3 +1,20 @@ +# in_flac - Winamp2 FLAC input plugin +# Copyright (C) 2000,2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + EXTRA_DIST = Makefile.vc \ in2.h \ in_flac.c \ diff --git a/src/plugin_winamp2/Makefile.vc b/src/plugin_winamp2/Makefile.vc index 83836dc6..227eda10 100644 --- a/src/plugin_winamp2/Makefile.vc +++ b/src/plugin_winamp2/Makefile.vc @@ -1,3 +1,20 @@ +# in_flac - Winamp2 FLAC input plugin +# Copyright (C) 2000,2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + !include !IFDEF DEBUG diff --git a/src/plugin_winamp3/Makefile.am b/src/plugin_winamp3/Makefile.am index b4df0d97..0074ebfe 100644 --- a/src/plugin_winamp3/Makefile.am +++ b/src/plugin_winamp3/Makefile.am @@ -1,3 +1,20 @@ +# in_flac - Winamp3 FLAC input plugin +# Copyright (C) 2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + EXTRA_DIST = Makefile.vc \ core_api.h \ in_flac.cpp diff --git a/src/plugin_winamp3/Makefile.vc b/src/plugin_winamp3/Makefile.vc index 9364844e..1b33ec73 100644 --- a/src/plugin_winamp3/Makefile.vc +++ b/src/plugin_winamp3/Makefile.vc @@ -1,3 +1,20 @@ +# in_flac - Winamp3 FLAC input plugin +# Copyright (C) 2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + !include !IFDEF DEBUG diff --git a/src/plugin_winamp3/in_flac.cpp b/src/plugin_winamp3/in_flac.cpp index 9d956591..8f03aa70 100644 --- a/src/plugin_winamp3/in_flac.cpp +++ b/src/plugin_winamp3/in_flac.cpp @@ -1,3 +1,4 @@ +/* in_flac - Winamp3 FLAC input plugin * Copyright (C) 2001 Josh Coalson * * This program is free software; you can redistribute it and/or diff --git a/src/plugin_xmms/Makefile.am b/src/plugin_xmms/Makefile.am index b6bbf45a..3d53efcd 100644 --- a/src/plugin_xmms/Makefile.am +++ b/src/plugin_xmms/Makefile.am @@ -1,3 +1,20 @@ +# libxmms-flac - XMMS FLAC input plugin +# Copyright (C) 2000,2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + # # GNU makefile # diff --git a/src/plugin_xmms/Makefile.lite b/src/plugin_xmms/Makefile.lite index a50821c2..cdb6a31d 100644 --- a/src/plugin_xmms/Makefile.lite +++ b/src/plugin_xmms/Makefile.lite @@ -1,3 +1,20 @@ +# libxmms-flac - XMMS FLAC input plugin +# Copyright (C) 2000,2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + # # GNU makefile # diff --git a/src/test_streams/Makefile.am b/src/test_streams/Makefile.am index 8080d3b9..2dc3b74d 100644 --- a/src/test_streams/Makefile.am +++ b/src/test_streams/Makefile.am @@ -1,3 +1,20 @@ +# test_streams - Simple test pattern generator +# Copyright (C) 2000,2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + CFLAGS = @CFLAGS@ noinst_PROGRAMS = test_streams diff --git a/src/test_streams/Makefile.lite b/src/test_streams/Makefile.lite index e64e3d13..cd71eb1c 100644 --- a/src/test_streams/Makefile.lite +++ b/src/test_streams/Makefile.lite @@ -1,3 +1,20 @@ +# test_streams - Simple test pattern generator +# Copyright (C) 2000,2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + # # GNU makefile # diff --git a/src/test_unit/Makefile.am b/src/test_unit/Makefile.am index 3b7dd6b0..5e7fe788 100644 --- a/src/test_unit/Makefile.am +++ b/src/test_unit/Makefile.am @@ -1,3 +1,20 @@ +# test_unit - Simple FLAC unit tester +# Copyright (C) 2000,2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + CFLAGS = @CFLAGS@ INCLUDES = -I$(top_srcdir)/src/libFLAC/include diff --git a/src/test_unit/Makefile.lite b/src/test_unit/Makefile.lite index b1892eab..9874bb3b 100644 --- a/src/test_unit/Makefile.lite +++ b/src/test_unit/Makefile.lite @@ -1,3 +1,20 @@ +# test_unit - Simple FLAC unit tester +# Copyright (C) 2000,2001 Josh Coalson +# +# 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 the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + # # GNU makefile # diff --git a/test/Makefile.am b/test/Makefile.am index 19749e07..55a9d5df 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1,3 +1,20 @@ +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001 Josh Coalson +# +# This program is part of FLAC; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + TESTS = ./test_unit.sh ./test_streams.sh ./test_bins.sh CLEANFILES = $(wildcard *.raw) $(wildcard *.flac) $(wildcard *.cmp) \ diff --git a/test/Makefile.lite b/test/Makefile.lite index 0f09e93c..0fcb1c00 100644 --- a/test/Makefile.lite +++ b/test/Makefile.lite @@ -1,3 +1,20 @@ +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001 Josh Coalson +# +# This program is part of FLAC; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + # # GNU makefile # diff --git a/test/test_bins.sh b/test/test_bins.sh index 3b28b291..030d835e 100755 --- a/test/test_bins.sh +++ b/test/test_bins.sh @@ -1,5 +1,22 @@ #!/bin/sh +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001 Josh Coalson +# +# This program is part of FLAC; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + LD_LIBRARY_PATH=../src/libFLAC/.libs:../obj/lib:$LD_LIBRARY_PATH export LD_LIBRARY_PATH PATH=../src/flac:../obj/bin:$PATH diff --git a/test/test_streams.sh b/test/test_streams.sh index ae10b656..3ec92923 100755 --- a/test/test_streams.sh +++ b/test/test_streams.sh @@ -1,5 +1,22 @@ #!/bin/sh +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001 Josh Coalson +# +# This program is part of FLAC; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + LD_LIBRARY_PATH=../src/libFLAC/.libs:../obj/lib:$LD_LIBRARY_PATH export LD_LIBRARY_PATH PATH=../src/flac:../src/test_streams:../obj/bin:$PATH diff --git a/test/test_unit.sh b/test/test_unit.sh index a577f75d..7311007c 100755 --- a/test/test_unit.sh +++ b/test/test_unit.sh @@ -1,5 +1,22 @@ #!/bin/sh +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001 Josh Coalson +# +# This program is part of FLAC; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + LD_LIBRARY_PATH=../src/libFLAC/.libs:../obj/lib:$LD_LIBRARY_PATH export LD_LIBRARY_PATH PATH=../src/test_unit:../obj/bin:$PATH -- cgit v1.2.1