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

📄 makefile

📁 这是DVD中伺服部分的核心代码
💻
字号:
###############################################################################
##                                                                           ##
##  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.           ##
##                                                                           ##
###############################################################################

#######################################################################################################################
#
#  build\linux\gcc\Makefile  Top level makefile for Linux Platform
#
#  $Revision: 1.7 $ 
#
#	INPUT:		SDK_ROOT_DIRECTORY				=	path to SDK directory
#
#	OUTPUT:		TOOL_FILE						=	path to linux specific tools file
#				EXECUTABLE_DIRECTORY			=	path to place executable
#				LIBRARY_DIRECTORY				=	path to core library file
#				OBJECTCODE_DIRECTORY			=	path to write intermediate objectcode files
#				ARCH_DIRECTORY					=	path to linux specific arch directory
#
#  Makefile written for GNU make (v3.8 known to work)
#
#######################################################################################################################
include $(SDK_ROOT_DIRECTORY)/build/linux/linux_sources.mk

export TOOL_FILE				=	$(SDK_ROOT_DIRECTORY)/build/common/gcc/gcc_tools.mk

export EXECUTABLE_DIRECTORY		=	$(SDK_ROOT_DIRECTORY)/build/linux/gcc/bin
export OBJECTCODE_DIRECTORY		=	$(SDK_ROOT_DIRECTORY)/build/linux/gcc/obj
export LIBRARY_DIRECTORY		=	$(SDK_ROOT_DIRECTORY)/lib/linux/gcc
export ARCH_DIRECTORY			=	$(SDK_ROOT_DIRECTORY)/include/arch

include $(SDK_ROOT_DIRECTORY)/build/common/build_rules.mk

⌨️ 快捷键说明

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