📄 linux.mak
字号:
#************************************************************************
#Filename : linux.mak
#Description: linux definitions
#************************************************************************
# Copyright (c) 2001 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.
#************************************************************************
# Assumes default include paths for the compilers are set properly
# Set legal values for TARGET_OS_VERSION
LEGAL_TARGET_OS_VERSION:= redhat-6.0 redhat-6.1 redhat-6.2 redhat-7.0 redhat-7.1 redhat-7.2
# Set up rvbuildconfig.h definitions for TARGET_OS and TARGET_OS_VERSION
# to map to rvosdefs.h
TARGET_OS_LINE:= "RV_OS_TYPE_LINUX"
ifeq ($(TARGET_OS_VERSION), redhat-6.0)
TARGET_OS_VERSION_LINE:= "RV_OS_LINUX_REDHAT_6_0"
endif
ifeq ($(TARGET_OS_VERSION), redhat-6.1)
TARGET_OS_VERSION_LINE:= "RV_OS_LINUX_REDHAT_6_1"
endif
ifeq ($(TARGET_OS_VERSION), redhat-6.2)
TARGET_OS_VERSION_LINE:= "RV_OS_LINUX_REDHAT_6_2"
endif
ifeq ($(TARGET_OS_VERSION), redhat-7.0)
TARGET_OS_VERSION_LINE:= "RV_OS_LINUX_REDHAT_7_0"
endif
ifeq ($(TARGET_OS_VERSION), redhat-7.1)
TARGET_OS_VERSION_LINE:= "RV_OS_LINUX_REDHAT_7_1"
endif
ifeq ($(TARGET_OS_VERSION), redhat-7.2)
TARGET_OS_VERSION_LINE:= "RV_OS_LINUX_REDHAT_7_2"
endif
# Add required info to master lists
# MAKE_LIST - List any OS dependent makefiles (inclduing this one)
# INCLUDE_DIRS - List any OS dependent include directories in search order
# LIBS_LIST - List any OS dependent libraries needed to link executables
# LIBS_TK_DIRS - List any OS dependent include directories in search order for use of Tcl-Tk
# LIBS_TK_LIST - List any OS dependent libraries needed to link executables that use Tcl-Tk
MAKE_LIST +=
INCLUDE_DIRS +=
LIB_DIRS +=
LIBS_LIST += nsl
LIBS_TK_DIRS += /usr/X11R6/lib /usr/X11R6 /usr/X/lib /usr/X11/lib /usr/local/X11R5/lib
LIBS_TK_LIST += tcl8.3 tk8.3 Xaw3d Xmu Xt Xext
# Indicate if executable targets can be built for this OS via these makefiles
# Set to yes if they can be built, no if they can't.
OS_BUILD_EXECUTABLE := yes
# Extension to target name for executable (ie .exe for Windows)
EXECUTE_EXTENSION :=
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -