chipcss_sources.mk

来自「这是DVD中伺服部分的核心代码」· MK 代码 · 共 52 行

MK
52
字号
###############################################################################
##                                                                           ##
##  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.           ##
##                                                                           ##
###############################################################################

#######################################################################################################################
#
# chipcss_sources.mk							=	describes the chipcss specific sources 
#
#  $Revision: 1.5 $ 
#
#	INPUT:		SDK_ROOT_DIRECTORY				=	path to SDK directory
#				PLATFORM_SOURCECODE_FILES		=	platform specific components source code files
#				PLATFORM_INCLUDE_DIRECTORIES	=	platform specific components include directories
#
#  Makefile written for GNU make (v3.8 known to work)
#
#######################################################################################################################

SOURCE_DIRECTORY						=	$(SDK_ROOT_DIRECTORY)/source
COMPONENT_DIRECTORY						=	$(SOURCE_DIRECTORY)/components
CORE_INCLUDE_DIRECTORY					=	$(SDK_ROOT_DIRECTORY)/include
COMMON_INCLUDE_DIRECTORY				=	$(SDK_ROOT_DIRECTORY)/include/common
CHIPCSS_DIRECTORY                       =   $(SDK_ROOT_DIRECTORY)/samples/stubs/chipcss_stub
ARCH_INCLUDE_DIRECTORY                  =   $(SDK_ROOT_DIRECTORY)/samples/include

#######################################################################################################################

CHIPCSS_FLAGS							:=	

#######################################################################################################################

_CHIPCSS_SOURCECODE_FILES				=	chipcss.cpp
CHIPCSS_SOURCECODE_FILES				=	$(addprefix $(CHIPCSS_DIRECTORY)/, $(_CHIPCSS_SOURCECODE_FILES))
CHIPCSS_INCLUDE_DIRECTORIES				=	$(COMPONENT_DIRECTORY)/css			\
											$(COMPONENT_DIRECTORY)/css/chipcss	\
											$(CORE_INCLUDE_DIRECTORY)			\
											$(COMMON_INCLUDE_DIRECTORY)			\
											$(ARCH_INCLUDE_DIRECTORY)

CHIPCSS_LIBRARY_FILE					=	$(LIBRARY_DIRECTORY)/chipcss.lib


⌨️ 快捷键说明

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