diff options
author | François Revol <revol@free.fr> | 2002-11-05 00:38:06 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-11-05 00:38:06 +0000 |
commit | dfdfa47cd1e8887a99e19ba9291a8ffc52dd251c (patch) | |
tree | b70cec4c9ff9f9c9d7e5aee197dd786a423a3ee0 /libav/Makefile | |
parent | 95e2ce4aa05d0bd24c5620937b47e21125532df1 (diff) | |
download | ffmpeg-dfdfa47cd1e8887a99e19ba9291a8ffc52dd251c.tar.gz |
BeOS Audio ouput patch by (François Revol <revol at free dot fr>)
Originally committed as revision 1163 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/Makefile')
-rw-r--r-- | libav/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libav/Makefile b/libav/Makefile index e3a8ace27b..2889fd31f5 100644 --- a/libav/Makefile +++ b/libav/Makefile @@ -29,6 +29,10 @@ ifeq ($(CONFIG_AUDIO_OSS),yes) OBJS+= audio.o endif +ifeq ($(CONFIG_AUDIO_BEOS),yes) +OBJS+= beosaudio.o +endif + ifeq ($(CONFIG_NETWORK),yes) OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o # BeOS network stuff @@ -61,5 +65,9 @@ installlib: all %.o: %.c $(CC) $(CFLAGS) -c -o $@ $< +# BeOS: remove -Wall to get rid of all the "multibyte constant" warnings +%.o: %.cpp + g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $< + clean: rm -f *.o *~ *.a |