add "share" library

This commit is contained in:
Josh Coalson 2002-05-17 06:07:26 +00:00
parent 08200a161b
commit aae225a7cc
1 changed files with 9 additions and 1 deletions

View File

@ -27,7 +27,7 @@
# clean : remove all non-distro files
#
all: libFLAC flac metaflac test_streams test_unit
all: libFLAC libFLAC++ share flac metaflac test_streams test_unit
DEFAULT_CONFIG = release
@ -42,6 +42,12 @@ release : all
libFLAC:
(cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
libFLAC++: libFLAC
(cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
share:
(cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
flac: libFLAC
(cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
@ -62,6 +68,8 @@ test: debug
clean:
-(cd src/libFLAC ; $(MAKE) -f Makefile.lite clean)
-(cd src/libFLAC++ ; $(MAKE) -f Makefile.lite clean)
-(cd src/share ; $(MAKE) -f Makefile.lite clean)
-(cd src/flac ; $(MAKE) -f Makefile.lite clean)
-(cd src/metaflac ; $(MAKE) -f Makefile.lite clean)
-(cd src/plugin_xmms ; $(MAKE) -f Makefile.lite clean)