add Makefile.lite, Makefile.vc, etc. to EXTRA_DIST
This commit is contained in:
parent
4358cd4362
commit
cd443f6c24
@ -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 \
|
||||
|
22
build/Makefile.am
Normal file
22
build/Makefile.am
Normal file
@ -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
|
@ -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
|
||||
|
@ -18,6 +18,10 @@
|
||||
bin_PROGRAMS = flac
|
||||
CFLAGS = @CFLAGS@ @OGG_CFLAGS@
|
||||
|
||||
EXTRA_DIST = \
|
||||
Makefile.lite \
|
||||
Makefile.vc
|
||||
|
||||
flac_SOURCES = \
|
||||
analyze.c \
|
||||
decode.c \
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -18,6 +18,10 @@
|
||||
bin_PROGRAMS = metaflac
|
||||
CFLAGS = @CFLAGS@
|
||||
|
||||
EXTRA_DIST = \
|
||||
Makefile.lite \
|
||||
Makefile.vc
|
||||
|
||||
metaflac_SOURCES = \
|
||||
main.c
|
||||
metaflac_LDFLAGS =
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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@"
|
||||
|
@ -17,7 +17,10 @@
|
||||
|
||||
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
|
||||
|
@ -15,6 +15,10 @@
|
||||
# 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
|
||||
|
||||
|
@ -15,6 +15,10 @@
|
||||
# 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
|
||||
|
Loading…
Reference in New Issue
Block a user