makefile
来自「这是DVD中伺服部分的核心代码」· 代码 · 共 40 行
TXT
40 行
###############################################################################
## ##
## 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\win32\Makefile Top level makefile for Microsoft Windows Platform
#
# $Revision: 1.3 $
#
# INPUT: SDK_ROOT_DIRECTORY = path to SDK directory
#
# OUTPUT: TOOL_FILE = path to win32 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 win32 specific arch directory
#
# Makefile written for GNU make (v3.8 known to work)
#
#######################################################################################################################
include win32_sources.mk
export TOOL_FILE = $(SDK_ROOT_DIRECTORY)/build/windows/command_line/win32_tools.mk
export EXECUTABLE_DIRECTORY = $(SDK_ROOT_DIRECTORY)/build/windows/bin
export OBJECTCODE_DIRECTORY = $(SDK_ROOT_DIRECTORY)/build/windows/obj
export LIBRARY_DIRECTORY = $(SDK_ROOT_DIRECTORY)/lib/win32
export ARCH_DIRECTORY = $(SDK_ROOT_DIRECTORY)/include/arch
include $(SDK_ROOT_DIRECTORY)/build/common/build_rules.mk
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?