summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-09-09 17:28:53 +0000
committerMåns Rullgård <mans@mansr.com>2006-09-09 17:28:53 +0000
commit3acc68b4ff37af598de4d55fbe8d63adc49023e7 (patch)
tree14aab950d7f6b237c4789d864305001ed404f42a /Makefile
parent5ce117c37c9b1ff5ed121f372e972e9eb3d83d23 (diff)
fix out of tree builds
Originally committed as revision 6214 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0ce3b2a044..bf837520b2 100644
--- 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 $@ $<