add support for new file_utils convenience library

This commit is contained in:
Josh Coalson
2002-10-30 06:24:01 +00:00
parent f9a97120b5
commit 99602a28bf
11 changed files with 40 additions and 14 deletions

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 replaygain utf8
SUBDIRS = file_utils gain_analysis getopt replaygain utf8
EXTRA_DIST = \
Makefile.vc \

View File

@@ -3,6 +3,9 @@
# It's less hassle to spell it all out that to figure out how to do it right with nmake:
all:
cd file_utils
nmake /f Makefile.vc
cd ..
cd gain_analysis
nmake /f Makefile.vc
cd ..
@@ -17,6 +20,9 @@ all:
cd ..
clean:
cd file_utils
nmake /f Makefile.vc clean
cd ..
cd gain_analysis
nmake /f Makefile.vc clean
cd ..