Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
flac
Commits
3c043fd7
Commit
3c043fd7
authored
Oct 25, 2002
by
Josh Coalson
Browse files
add hooks for new replaygain wrapper lib
parent
c1d97f3f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Makefile.lite
View file @
3c043fd7
...
...
@@ -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
)
...
...
configure.in
View file @
3c043fd7
...
...
@@ -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/lib
utf8
.a $(top_builddir)/src/share/libgetopt.a'
SHARE_LIBS='$(top_builddir)/src/share/lib
replaygain.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 \
...
...
src/share/Makefile.am
View file @
3c043fd7
...
...
@@ -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
\
...
...
src/share/Makefile.vc
View file @
3c043fd7
...
...
@@ -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
..
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment