⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 player_build_rules.mk

📁 这是DVD中伺服部分的核心代码
💻 MK
字号:
###############################################################################
##                                                                           ##
##  Copyright (c) 2006 Videon Central, Inc.                                  ##
##  All rights reserved.                                                     ##
##                                                                           ##
##  The makefile contained herein contains proprietary information which     ##
##  is the property of Videon Central, Inc.  The makefile may be used        ##
##  and/or copied only with the written permission of Videon Central, Inc.   ##
##  or in accordance with the terms and conditions stipulated in the         ##
##  agreement/contract under which the makefile has been supplied.           ##
##                                                                           ##
###############################################################################

#######################################################################################################################
#
#  player_build_rules.mk	- describes available player build targets for the SDK
#
#  $Revision: 1.5 $ 
#
#	INPUT:		SDK_ROOT_DIRECTORY				=	path to SDK directory
#
#  Makefile written for GNU make (v3.8 known to work)
#
#######################################################################################################################

#	Perform error checking to make sure SDK_ROOT_DIRECTORY symbol is defined

ifeq ($(strip $(SDK_ROOT_DIRECTORY)),)
	$(error ERROR: SDK_ROOT_DIRECTORY undefined)
endif


PLAYER_DIRECTORY				=	$(SDK_ROOT_DIRECTORY)/build/common/player


.PHONY: player
.PHONY: player-library
.PHONY: player-clean
.PHONY: player-diagnostics


player: 
	$(MAKE) -C $(PLAYER_DIRECTORY) -f player.mk player


player-library:
	$(MAKE) -C $(PLAYER_DIRECTORY) -f player_library.mk player-library


player-clean: 
	$(MAKE) -C $(PLAYER_DIRECTORY) -f player.mk          player-clean
	$(MAKE) -C $(PLAYER_DIRECTORY) -f player_library.mk  player-clean


player-diagnostics:
	$(MAKE) -C $(PLAYER_DIRECTORY) -f player.mk          player-diagnostics
	$(MAKE) -C $(PLAYER_DIRECTORY) -f player_library.mk  player-diagnostics

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -