chipcss_build_rules.mk

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

MK
53
字号
###############################################################################
##                                                                           ##
##  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_build_rules.mk	- describes available chipcss build targets for the SDK
#
#  $Revision: 1.4 $ 
#
#	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


CHIPCSS_DIRECTORY				=	$(SDK_ROOT_DIRECTORY)/build/common/chipcss


.PHONY: chipcss
.PHONY: chipcss-clean
.PHONY: chipcss-diagnostics


chipcss : 
	$(MAKE) $(MAKE_FLAGS) -C $(CHIPCSS_DIRECTORY) -f chipcss.mk chipcss


chipcss-clean: 
	$(MAKE) $(MAKE_FLAGS) -C $(CHIPCSS_DIRECTORY) -f chipcss.mk chipcss-clean


chipcss-diagnostics:
	$(MAKE) $(MAKE_FLAGS) -C $(CHIPCSS_DIRECTORY) -f chipcss.mk chipcss-diagnostics


⌨️ 快捷键说明

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