mirror of https://github.com/xiph/flac
add hooks for new replaygain wrapper lib
This commit is contained in:
parent
c1d97f3f87
commit
3c043fd730
|
@ -60,6 +60,7 @@ libOggFLAC++: libFLAC
|
|||
share:
|
||||
(cd src/$@/gain_analysis ; $(MAKE) -f Makefile.lite $(CONFIG))
|
||||
(cd src/$@/getopt ; $(MAKE) -f Makefile.lite $(CONFIG))
|
||||
(cd src/$@/replaygain ; $(MAKE) -f Makefile.lite $(CONFIG))
|
||||
(cd src/$@/utf8 ; $(MAKE) -f Makefile.lite $(CONFIG))
|
||||
|
||||
flac: libFLAC libOggFLAC share
|
||||
|
@ -100,6 +101,7 @@ clean:
|
|||
-(cd src/libOggFLAC++ ; $(MAKE) -f Makefile.lite clean)
|
||||
-(cd src/share/gain_analysis ; $(MAKE) -f Makefile.lite clean)
|
||||
-(cd src/share/getopt ; $(MAKE) -f Makefile.lite clean)
|
||||
-(cd src/share/replaygain ; $(MAKE) -f Makefile.lite clean)
|
||||
-(cd src/share/utf8 ; $(MAKE) -f Makefile.lite clean)
|
||||
-(cd src/flac ; $(MAKE) -f Makefile.lite clean)
|
||||
-(cd src/metaflac ; $(MAKE) -f Makefile.lite clean)
|
||||
|
|
|
@ -230,7 +230,7 @@ fi
|
|||
AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built]))
|
||||
AM_CONDITIONAL(FLaC__HAS_XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x)
|
||||
|
||||
SHARE_LIBS='$(top_builddir)/src/share/libutf8.a $(top_builddir)/src/share/libgetopt.a'
|
||||
SHARE_LIBS='$(top_builddir)/src/share/libreplaygain.a $(top_builddir)/src/share/libgain_analysis.a $(top_builddir)/src/share/libgetopt.a $(top_builddir)/src/share/libutf8.a'
|
||||
|
||||
dnl check for i18n(internationalization); these are from libiconv/gettext
|
||||
AM_ICONV
|
||||
|
@ -382,6 +382,10 @@ AC_OUTPUT( \
|
|||
src/plugin_winamp3/Makefile \
|
||||
src/plugin_xmms/Makefile \
|
||||
src/share/Makefile \
|
||||
src/share/gain_analysis/Makefile \
|
||||
src/share/getopt/Makefile \
|
||||
src/share/replaygain/Makefile \
|
||||
src/share/utf8/Makefile \
|
||||
src/test_libFLAC/Makefile \
|
||||
src/test_libFLAC++/Makefile \
|
||||
src/test_libOggFLAC/Makefile \
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
SUBDIRS = gain_analysis getopt utf8
|
||||
SUBDIRS = gain_analysis getopt replaygain utf8
|
||||
|
||||
EXTRA_DIST = \
|
||||
Makefile.vc \
|
||||
|
|
|
@ -9,6 +9,9 @@ all:
|
|||
cd getopt
|
||||
nmake /f Makefile.vc
|
||||
cd ..
|
||||
cd replaygain
|
||||
nmake /f Makefile.vc
|
||||
cd ..
|
||||
cd utf8
|
||||
nmake /f Makefile.vc
|
||||
cd ..
|
||||
|
@ -20,6 +23,9 @@ clean:
|
|||
cd getopt
|
||||
nmake /f Makefile.vc clean
|
||||
cd ..
|
||||
cd replaygain
|
||||
nmake /f Makefile.vc clean
|
||||
cd ..
|
||||
cd utf8
|
||||
nmake /f Makefile.vc clean
|
||||
cd ..
|
||||
|
|
Loading…
Reference in New Issue