mirror of https://git.ffmpeg.org/ffmpeg.git
Remove pointless variable indirection.
Originally committed as revision 6202 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a9550eb670
commit
f381af7b7f
3
Makefile
3
Makefile
|
@ -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)
|
||||||
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)
|
||||||
|
|
Loading…
Reference in New Issue