add hooks for new replaygain wrapper lib
authorJosh Coalson <jcoalson@users.sourceforce.net>
Fri, 25 Oct 2002 04:57:05 +0000 (04:57 +0000)
committerJosh Coalson <jcoalson@users.sourceforce.net>
Fri, 25 Oct 2002 04:57:05 +0000 (04:57 +0000)
Makefile.lite
configure.in
src/share/Makefile.am
src/share/Makefile.vc

index 8a54b93..49868fb 100644 (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)
index 1f36b6c..72fb120 100644 (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 \
index b467a62..4d2089f 100644 (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 \
index 46c2f79..882ca66 100644 (file)
@@ -9,6 +9,9 @@ all:
        cd getopt\r
        nmake /f Makefile.vc\r
        cd ..\r
+       cd replaygain\r
+       nmake /f Makefile.vc\r
+       cd ..\r
        cd utf8\r
        nmake /f Makefile.vc\r
        cd ..\r
@@ -20,6 +23,9 @@ clean:
        cd getopt\r
        nmake /f Makefile.vc clean\r
        cd ..\r
+       cd replaygain\r
+       nmake /f Makefile.vc clean\r
+       cd ..\r
        cd utf8\r
        nmake /f Makefile.vc clean\r
        cd ..\r