add hooks for new replaygain wrapper lib

This commit is contained in:
Josh Coalson 2002-10-25 04:57:05 +00:00
parent c1d97f3f87
commit 3c043fd730
4 changed files with 14 additions and 2 deletions

View File

@ -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)

View File

@ -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 \

View File

@ -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 \

View File

@ -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 ..