MingW build broken: SVN 26753: Faulty Makefile?
"Henry Garcia" <[email protected]> Tue, 13 May 2008 14:30:50 -0400
| Newsgroups | gmane.comp.video.mplayer.cygwin |
|---|---|
| Message-ID | <[email protected]> |
> > > You can manually add targets to the main makefile (if needed): > libavutil/libavutil.a: > $(MAKE) -C libavutil > > libavcodec/libavcodec.a: > $(MAKE) -C libavcodec > > libpostproc/libpostproc.a: > $(MAKE) -C libpostproc > > libavformat/libavformat.a: > $(MAKE) -C libavformat > > libswscale/libswscale.a: > $(MAKE) -C libswscale > > -- I tried that. It finishes. No errors. But no executable file is built. Must be inserting the Makefile in the wrong place? for part in $(PARTS); do $(MAKE) -C $$part depend; done > > PARTS = libavcodec \ > libavformat \ > libavutil \ > libpostproc \ > libswscale \ > Found the above lines in the Makefile: exact quote (perhaps not in that exact order). And the above 5 you mentioned should be built without having to insert lines. Must be some logic error in the Makefile? Hank