Mercurial > libavformat.hg
comparison Makefile @ 1058:d5efc69f27c6 libavformat
Have EXTRALIBS appear after other link options, fixes shared build on Cygwin.
based on patch by Marcus Engene, ffmpeg AATT engene DDOOTT se
author | diego |
---|---|
date | Sat, 15 Apr 2006 15:05:53 +0000 |
parents | 3aeb079a7e74 |
children | 21c0614314aa |
comparison
equal
deleted
inserted
replaced
1057:6c53db379305 | 1058:d5efc69f27c6 |
---|---|
64 | 64 |
65 ifeq ($(CONFIG_AUDIO_OSS),yes) | 65 ifeq ($(CONFIG_AUDIO_OSS),yes) |
66 OBJS+= audio.o | 66 OBJS+= audio.o |
67 endif | 67 endif |
68 | 68 |
69 EXTRALIBS += -L../libavutil -lavutil$(BUILDSUF) -lavcodec$(BUILDSUF) -L../libavcodec | 69 EXTRALIBS := -L../libavutil -lavutil$(BUILDSUF) -lavcodec$(BUILDSUF) -L../libavcodec $(EXTRALIBS) |
70 | 70 |
71 ifeq ($(CONFIG_AUDIO_BEOS),yes) | 71 ifeq ($(CONFIG_AUDIO_BEOS),yes) |
72 CPPOBJS+= beosaudio.o | 72 CPPOBJS+= beosaudio.o |
73 endif | 73 endif |
74 | 74 |