summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-09-08 18:17:08 +0000
committerDiego Biurrun <diego@biurrun.de>2006-09-08 18:17:08 +0000
commita9550eb670642f7cdee8871b8f33fc69e05fe1db (patch)
tree88abfee4c644d9211e9f688f7e949740a2ae69d2
parentcc654dd7b634698461bb4e53ee17186889c9005e (diff)
simplify
Originally committed as revision 6201 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3ac6aa8be5..b244e6cc2d 100644
--- a/Makefile
+++ b/Makefile
@@ -101,10 +101,10 @@ output_example$(EXESUF): output_example.o .libs
$(CC) $(LDFLAGS) -o $@ output_example.o $(FFLIBS) $(EXTRALIBS)
qt-faststart$(EXESUF): qt-faststart.c
- $(CC) $(CFLAGS) $(SRC_PATH)/qt-faststart.c -o qt-faststart$(EXESUF)
+ $(CC) $(CFLAGS) $(SRC_PATH)/$< -o $@
cws2fws$(EXESUF): cws2fws.c
- $(CC) $(SRC_PATH)/cws2fws.c -o cws2fws$(EXESUF) -lz
+ $(CC) $(SRC_PATH)/$< -o $@ -lz
ffplay.o: ffplay.c
$(CC) $(CFLAGS) $(SDL_CFLAGS) -c -o $@ $<