add Makefile.lite, Makefile.vc, etc. to EXTRA_DIST
authorJosh Coalson <jcoalson@users.sourceforce.net>
Tue, 9 Jul 2002 06:27:07 +0000 (06:27 +0000)
committerJosh Coalson <jcoalson@users.sourceforce.net>
Tue, 9 Jul 2002 06:27:07 +0000 (06:27 +0000)
13 files changed:
Makefile.am
build/Makefile.am [new file with mode: 0644]
src/Makefile.am
src/flac/Makefile.am
src/libFLAC++/Makefile.am
src/libFLAC/Makefile.am
src/metaflac/Makefile.am
src/plugin_winamp2/Makefile.am
src/plugin_xmms/Makefile.am
src/share/Makefile.am
src/test_libFLAC++/Makefile.am
src/test_libFLAC/Makefile.am
src/test_streams/Makefile.am

index eba304e..ac65128 100644 (file)
@@ -29,7 +29,7 @@
 #
 
 
-SUBDIRS = doc include man src test
+SUBDIRS = build doc include man src test
 
 DISTCLEANFILES = libtool-disable-static
 
@@ -37,6 +37,8 @@ EXTRA_DIST = \
        COPYING.FDL \
        COPYING.GPL \
        COPYING.LGPL \
+       Doxyfile \
+       Makefile.lite \
        autogen.sh \
        depcomp \
        flac.pbproj \
diff --git a/build/Makefile.am b/build/Makefile.am
new file mode 100644 (file)
index 0000000..cacda3a
--- /dev/null
@@ -0,0 +1,22 @@
+#  FLAC - Free Lossless Audio Codec
+#  Copyright (C) 2002  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 = \
+       config.mk \
+       exe.mk \
+       lib.mk \
+       project_builder_prebuild_phase.sh
index 49762f9..d0edd5f 100644 (file)
@@ -19,4 +19,18 @@ if FLaC__HAS_XMMS
 XMMS_DIRS = plugin_xmms
 endif
 
-SUBDIRS = libFLAC libFLAC++ share flac metaflac $(XMMS_DIRS) test_libFLAC test_libFLAC++ test_streams
+EXTRA_DIST = \
+       monkeys_audio_utilities \
+       plugin_winamp2 \
+       plugin_winamp3
+
+SUBDIRS = \
+       libFLAC \
+       libFLAC++ \
+       share \
+       flac \
+       metaflac \
+       $(XMMS_DIRS) \
+       test_libFLAC \
+       test_libFLAC++ \
+       test_streams
index 3f5e88c..020278e 100644 (file)
 bin_PROGRAMS = flac
 CFLAGS = @CFLAGS@ @OGG_CFLAGS@
 
+EXTRA_DIST = \
+       Makefile.lite \
+       Makefile.vc
+
 flac_SOURCES = \
        analyze.c \
        decode.c \
index a5b257a..718c8a3 100644 (file)
@@ -22,7 +22,10 @@ CXXFLAGS = @CXXFLAGS@
 m4datadir = $(datadir)/aclocal
 m4data_DATA = libFLAC++.m4
 
-EXTRA_DIST = libFLAC++.m4
+EXTRA_DIST = \
+       Makefile.lite \
+       Makefile.vc \
+       libFLAC++.m4
 
 # see 'http://www.gnu.org/software/libtool/manual.html#Versioning' for numbering convention
 libFLAC___la_LDFLAGS = -version-info 1:1:0
index 7893960..f57c71a 100644 (file)
@@ -37,7 +37,10 @@ SUBDIRS = $(ARCH_SUBDIRS) include .
 m4datadir = $(datadir)/aclocal
 m4data_DATA = libFLAC.m4
 
-EXTRA_DIST = libFLAC.m4
+EXTRA_DIST = \
+       Makefile.lite \
+       Makefile.vc \
+       libFLAC.m4
 
 # see 'http://www.gnu.org/software/libtool/manual.html#Versioning' for numbering convention
 libFLAC_la_LDFLAGS = -version-info 3:1:0
index 306bbef..67fc444 100644 (file)
 bin_PROGRAMS = metaflac
 CFLAGS = @CFLAGS@
 
+EXTRA_DIST = \
+       Makefile.lite \
+       Makefile.vc
+
 metaflac_SOURCES = \
        main.c
 metaflac_LDFLAGS = 
index 110d011..4dc83e5 100644 (file)
@@ -15,7 +15,8 @@
 #  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 \
+EXTRA_DIST = \
+       Makefile.vc \
        in2.h \
        in_flac.c \
        out.h
index 3e32d7f..d2d3c1b 100644 (file)
@@ -19,6 +19,9 @@
 # GNU makefile
 #
 
+EXTRA_DIST = \
+       Makefile.lite
+
 CFLAGS = @CFLAGS@ @XMMS_CFLAGS@
 xmmsinputplugindir = @XMMS_INPUT_PLUGIN_DIR@
 # Don't build a static library
index a8d8c7c..1fafc9c 100644 (file)
@@ -10,7 +10,14 @@ libutf8_a_SOURCES = charset.c charset.h iconvert.c utf8.c
 
 libgetopt_a_SOURCES = getopt.c getopt1.c
 
-EXTRA_DIST = charmaps.h makemap.c charset_test.c charsetmap.h
+EXTRA_DIST = \
+       Makefile.lite \
+       Makefile.vc \
+       README \
+       charmaps.h \
+       makemap.c \
+       charset_test.c \
+       charsetmap.h
 
 debug:
        $(MAKE) all CFLAGS="@DEBUG@"
index 0b59f79..4067e28 100644 (file)
 
 CFLAGS = @CFLAGS@
 
-EXTRA_DIST = README
+EXTRA_DIST = \
+       Makefile.lite \
+       Makefile.vc \
+       README
 
 noinst_PROGRAMS = test_libFLAC++
 test_libFLAC___LDADD = $(top_builddir)/src/libFLAC++/libFLAC++.la $(top_builddir)/src/libFLAC/libFLAC.la -lm
index e730a19..861867a 100644 (file)
 #  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.lite \
+       Makefile.vc
+
 CFLAGS = @CFLAGS@
 INCLUDES = -I$(top_srcdir)/src/libFLAC/include
 
index 910a7bc..bd58f8a 100644 (file)
 #  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.lite \
+       Makefile.vc
+
 CFLAGS = @CFLAGS@
 
 noinst_PROGRAMS = test_streams