mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 07:51:59 -09:00
mplayer: add dependency libraries to a variable
This patch will put dependency libraries in a variable and add this to the dependencies to build mplayer. This is done to ease adding new libraries in the future. Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
This commit is contained in:
@@ -17,6 +17,8 @@ else
|
||||
MPLAYER_ENDIAN:=--disable-big-endian
|
||||
endif
|
||||
|
||||
MPLAYER_DEP_LIBS:=libmad
|
||||
|
||||
$(DL_DIR)/$(MPLAYER_SOURCE):
|
||||
$(WGET) -P $(DL_DIR) $(MPLAYER_SITE)/$(MPLAYER_SOURCE)
|
||||
|
||||
@@ -60,7 +62,7 @@ $(TARGET_DIR)/$(MPLAYER_TARGET_BINARY): $(MPLAYER_DIR)/$(MPLAYER_BINARY)
|
||||
-$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/$(MPLAYER_TARGET_BINARY)
|
||||
touch -c $@
|
||||
|
||||
mplayer: uclibc libmad $(TARGET_DIR)/$(MPLAYER_TARGET_BINARY)
|
||||
mplayer: uclibc $(MPLAYER_DEP_LIBS) $(TARGET_DIR)/$(MPLAYER_TARGET_BINARY)
|
||||
|
||||
mplayer-source: $(DL_DIR)/$(MPLAYER_SOURCE)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user