diff options
author | arpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-06-04 19:33:28 +0000 |
---|---|---|
committer | arpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-06-04 19:33:28 +0000 |
commit | c2b7070033f690b12dd1adc81209fcdeb8bb21d3 (patch) | |
tree | 8af3cb78a6e2e107508777ec24f9467e562caaab /libao2 | |
parent | b2b9d98b8f35204705c67c8ae3304d7461fe6b7e (diff) | |
download | mpv-c2b7070033f690b12dd1adc81209fcdeb8bb21d3.tar.bz2 mpv-c2b7070033f690b12dd1adc81209fcdeb8bb21d3.tar.xz |
dependency stuff fixed
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1011 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libao2')
-rw-r--r-- | libao2/Makefile | 5 | ||||
-rw-r--r-- | libao2/ao_null.c | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/libao2/Makefile b/libao2/Makefile index 9d64132ce3..ddf755f04e 100644 --- a/libao2/Makefile +++ b/libao2/Makefile @@ -17,7 +17,7 @@ CFLAGS = $(OPTFLAGS) -I. -I.. .c.o: $(CC) -c $(CFLAGS) -o $@ $< -$(LIBNAME): .depend $(OBJS) +$(LIBNAME): $(OBJS) $(AR) r $(LIBNAME) $(OBJS) all: $(LIBNAME) @@ -29,9 +29,8 @@ distclean: rm -f Makefile.bak *.o *.a *~ .depend dep: depend -depend: .depend -.depend: Makefile ../config.mak ../config.h +depend: $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend # diff --git a/libao2/ao_null.c b/libao2/ao_null.c index d48667757f..4ec360fea6 100644 --- a/libao2/ao_null.c +++ b/libao2/ao_null.c @@ -33,7 +33,7 @@ static int init(int rate,int channels,int format,int flags){ ao_outburst=4096; - return 0; + return 1; } // close audio device |