Skip to content
Snippets Groups Projects
Commit f381af7b authored by Diego Biurrun's avatar Diego Biurrun
Browse files

Remove pointless variable indirection.

Originally committed as revision 6202 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a9550eb6
Branches
Tags
No related merge requests found
...@@ -30,7 +30,6 @@ ifeq ($(CONFIG_FFPLAY),yes) ...@@ -30,7 +30,6 @@ ifeq ($(CONFIG_FFPLAY),yes)
MANPAGES+=doc/ffplay.1 MANPAGES+=doc/ffplay.1
PROGS_G+=ffplay_g$(EXESUF) PROGS_G+=ffplay_g$(EXESUF)
PROGS+=ffplay$(EXESUF) PROGS+=ffplay$(EXESUF)
FFPLAY_O=ffplay.o
endif endif
BASENAMES=ffmpeg ffplay ffserver BASENAMES=ffmpeg ffplay ffserver
...@@ -57,7 +56,7 @@ ifeq ($(BUILD_DOC),yes) ...@@ -57,7 +56,7 @@ ifeq ($(BUILD_DOC),yes)
DOC=documentation DOC=documentation
endif 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) SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s)
LDFLAGS += -L./libavformat -L./libavcodec -L./libavutil LDFLAGS += -L./libavformat -L./libavcodec -L./libavutil
FFLIBS = -lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lavutil$(BUILDSUF) FFLIBS = -lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lavutil$(BUILDSUF)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment