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

📄 player_common.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_common.mk		- describes available build targets for the reference player application
#
#  $Revision: 1.2 $ 
#
#	INPUT:		SDK_ROOT_DIRECTORY				=	path to SDK directory
#				TOOL_FILE						=	platform specific tools file
#
#	OUTPUTS:	MODULE_FLAGS					=	player flags
#				MODULE_INCLUDE_DIRECTORIES		=	player include file search paths
#				MODULE_EXECUTABLE_FILE			=	player executable file name(full path)
#				MODULE_LIBRARIES				=	player external libraries to link to
#				MODULE_OBJECTCODE_DIRECTORY		=	path to put intermediate objectcode files
#				MODULE_SOURCECODE_FILES			=	list of source code files(full path)
#				MODULE_DEBUG_BUILD				=	"YES" or "NO"
#
#  Makefile written for GNU make (v3.8 known to work)
#
#######################################################################################################################

include $(TOOL_FILE)


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


all:	
	@echo "                     AVAILABLE TARGETS"
	@echo "----------------------------------------------------------------------"
	@echo "             player: builds player executable"
	@echo -e
	@echo "       clean-player: removes all player object code and depend files"
	@echo -e
	@echo " diagnostics-player: shows various settings"


player:  $(PLAYER_EXECUTABLE)


player-library: $(PLAYER_LIBRARY_FILE)


$(CORE_LIBRARY_FILE) : 
	$(error ERROR: missing $(CORE_LIBRARY_FILE)) 


player-clean: module-clean


player-diagnostics:
	@echo "******************************************************************************"
	@echo "*                         player.mk diagnostics                              *"
	@echo "******************************************************************************"
	@echo "           tool file: $(TOOL_FILE)"
	@echo "chipcss library file: $(CHIPCSS_LIBRARY_FILE)"
	@echo "   core library file: $(CORE_LIBRARY_FILE)"
	@echo -e


-include $(MODULE_DEPEND_FILES)

⌨️ 快捷键说明

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