]> git.sesse.net Git - ffmpeg/commitdiff
fix out of tree builds
authorMåns Rullgård <mans@mansr.com>
Sat, 9 Sep 2006 17:28:53 +0000 (17:28 +0000)
committerMåns Rullgård <mans@mansr.com>
Sat, 9 Sep 2006 17:28:53 +0000 (17:28 +0000)
Originally committed as revision 6214 to svn://svn.ffmpeg.org/ffmpeg/trunk

Makefile

index 0ce3b2a0441fb79d5b7543de2b79c35911ddf473..bf837520b23cc663cb01d09b003ea08bb066c2da 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -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 $@ $<