add undocumented option --apply-replaygain-which-is-not-lossless to flac; required a lot of reorganization; gain_analysis lib renamed to replaygain_analyis; replaygain_synthesis moved out of plugin_common into its own library in share/

This commit is contained in:
Josh Coalson
2003-12-17 04:51:06 +00:00
parent 628f4efc55
commit 9c650a561a
56 changed files with 481 additions and 206 deletions

View File

@@ -15,8 +15,8 @@
# restrictive of those mentioned above. See the file COPYING.Xiph in this
# distribution.
.PHONY: all gain_analysis getopt grabbag utf8
all: gain_analysis getopt grabbag utf8
.PHONY: all getopt grabbag replaygain_analysis replaygain_synthesis utf8
all: getopt grabbag replaygain_analysis replaygain_synthesis utf8
DEFAULT_CONFIG = release
@@ -30,20 +30,24 @@ debug : all
valgrind: all
release : all
gain_analysis:
(cd $@ ; $(MAKE) -f Makefile.lite $(CONFIG))
getopt:
(cd $@ ; $(MAKE) -f Makefile.lite $(CONFIG))
grabbag:
(cd $@ ; $(MAKE) -f Makefile.lite $(CONFIG))
replaygain_analysis:
(cd $@ ; $(MAKE) -f Makefile.lite $(CONFIG))
replaygain_synthesis:
(cd $@ ; $(MAKE) -f Makefile.lite $(CONFIG))
utf8:
(cd $@ ; $(MAKE) -f Makefile.lite $(CONFIG))
clean:
-(cd gain_analysis ; $(MAKE) -f Makefile.lite clean)
-(cd getopt ; $(MAKE) -f Makefile.lite clean)
-(cd grabbag ; $(MAKE) -f Makefile.lite clean)
-(cd replaygain_analysis ; $(MAKE) -f Makefile.lite clean)
-(cd replaygain_synthesis ; $(MAKE) -f Makefile.lite clean)
-(cd utf8 ; $(MAKE) -f Makefile.lite clean)