📄 makefile
字号:
###############################################################################
## ##
## 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -