Commit f381af7b authored by Diego Biurrun's avatar Diego Biurrun

Remove pointless variable indirection.

Originally committed as revision 6202 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a9550eb6
......@@ -30,7 +30,6 @@ ifeq ($(CONFIG_FFPLAY),yes)
MANPAGES+=doc/ffplay.1
PROGS_G+=ffplay_g$(EXESUF)
PROGS+=ffplay$(EXESUF)
FFPLAY_O=ffplay.o
endif
BASENAMES=ffmpeg ffplay ffserver
......@@ -57,7 +56,7 @@ ifeq ($(BUILD_DOC),yes)
DOC=documentation
endif
OBJS = ffmpeg.o ffserver.o cmdutils.o $(FFPLAY_O)
OBJS = ffmpeg.o ffserver.o cmdutils.o ffplay.o
SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s)
LDFLAGS += -L./libavformat -L./libavcodec -L./libavutil
FFLIBS = -lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lavutil$(BUILDSUF)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment