diff options
author | Måns Rullgård <mans@mansr.com> | 2006-09-09 17:28:53 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-09-09 17:28:53 +0000 |
commit | 3acc68b4ff37af598de4d55fbe8d63adc49023e7 (patch) | |
tree | 14aab950d7f6b237c4789d864305001ed404f42a /Makefile | |
parent | 5ce117c37c9b1ff5ed121f372e972e9eb3d83d23 (diff) | |
download | ffmpeg-3acc68b4ff37af598de4d55fbe8d63adc49023e7.tar.gz |
fix out of tree builds
Originally committed as revision 6214 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -100,10 +100,10 @@ output_example$(EXESUF): output_example.o .libs $(CC) $(LDFLAGS) -o $@ output_example.o $(EXTRALIBS) qt-faststart$(EXESUF): qt-faststart.c - $(CC) $(CFLAGS) $(SRC_PATH)/$< -o $@ + $(CC) $(CFLAGS) $< -o $@ cws2fws$(EXESUF): cws2fws.c - $(CC) $(SRC_PATH)/$< -o $@ -lz + $(CC) $< -o $@ -lz ffplay.o: ffplay.c $(CC) $(CFLAGS) $(SDL_CFLAGS) -c -o $@ $< |