📄 psos.mak
字号:
#************************************************************************
#Filename : psos.mak
#Description: pSOS 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.
#************************************************************************
# PSS_BSP and PSS_ROOT must be defined in the environment
# Check for required definitions
ifndef PSS_BSP
$(error PSS_BSP is not defined. It must be set to the directory of the bsp to be used)
endif
ifndef PSS_ROOT
$(error PSS_ROOT is not defined. It must be set to the pSOS root directory)
endif
# Set legal values for TARGET_OS_VERSION
LEGAL_TARGET_OS_VERSION:= 2.0 2.5 3.0
# Set up rvbuildconfig.h definitions for TARGET_OS and TARGET_OS_VERSION
# to map to rvosdefs.h
TARGET_OS_LINE:= "RV_OS_TYPE_PSOS"
ifeq ($(TARGET_OS_VERSION), 2.0)
TARGET_OS_VERSION_LINE:= "RV_OS_PSOS_2_0"
endif
ifeq ($(TARGET_OS_VERSION), 2.5)
TARGET_OS_VERSION_LINE:= "RV_OS_PSOS_2_5"
endif
ifeq ($(TARGET_OS_VERSION), 3.0)
TARGET_OS_VERSION_LINE:= "RV_OS_PSOS_3_0"
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
MAKE_LIST +=
INCLUDE_DIRS += $(PSS_BSP) $(PSS_ROOT)/include
LIB_DIRS += $(PSS_BSP) $(PSS_ROOT)/sys/libc $(PSS_ROOT)/sys/os
LIBS_LIST += netu loadr bsp drv sys prepcS pnet query c
# 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 := no
# Extension to target name for executable (ie .exe for Windows)
EXECUTE_EXTENSION :=
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -