mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
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
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user