📄 common.mak
字号:
#************************************************************************
#Filename : common.mak
#Description: common core library sub-makefile
#************************************************************************
# Copyright (c) 2001,2002 RADVISION Inc. and RADVISION Ltd.
#************************************************************************
#NOTICE:
#This document contains information that is confidential and proprietary
#to RADVISION Inc. and RADVISION Ltd.. No part of this document may be
#reproduced in any form whatsoever without written prior approval by
#RADVISION Inc. or RADVISION Ltd..
#
#RADVISION Inc. and RADVISION Ltd. reserve the right to revise this
#publication and make changes without obligation to notify any person of
#such revisions or changes.
#************************************************************************
# Project Name - must be unique within build tree. Actual target names will
# be based on this name (for example, on Solaris, the resulting library
# will be called libNAME.a and the excutable, if any, will be NAME.
PROJECT_NAME := common
# Project Makefile - relative path and name of this file.
# Must match path and name in main makefile.
PROJECT_MAKE := common/common.mak
# Project Path = relative path from main makefile to top of source
# directory tree for this project
PROJECT_PATH := common
# Module sub-directories - relative path from this makefile
MODULES := ccore cutils cbase config ccore/memdrivers ccore/netdrivers config/arch config/os config/tool
# Build executable application for this project - yes/no
BUILD_EXECUTABLE := no
# Libraries needed for linking executable (exclude lib prefix and extension)
EXE_LIBS_NEEDED :=
# List of files that should be exported
INCLUDE_FILES_LIST += common/cutils/rvtypes.h common/cutils/rverror.h common/config/rvconfig.h common/config/rvbuildconfig.h common/config/arch/rvarchconfig.h common/config/arch/rvarchdefs.h common/config/os/rvosconfig.h common/config/os/rvosdefs.h common/config/os/rv$(TARGET_OS).h common/config/tool/rvtoolconfig.h common/config/tool/rvtooldefs.h common/config/tool/rv$(COMPILER_TOOL).h
# This file must be included at the end of every project makefile
include $(PROJECT_MAKE_PATH)/project.mak
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -