?? compaqc.mak
字號(hào):
#************************************************************************
#Filename : compaqc.mak
#Description: Compaq C compiler tool definitions (for Tru64)
#************************************************************************
# 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 supported TARGET_OS's for these compiler tools
LEGAL_COMPILER_OS:= tru64
# Version 5.6 is called "DEC C" and not "Compaq C". Tru64 versions lower than
# 5.1A uses the older name.
# Set legal values for COMPILER_TOOL_VERSION
LEGAL_COMPILER_TOOL_VERSION:= 5.6 6.4
# Set up rvbuildconfig.h definitions for COMPILER_TOOL and COMPILER_TOOL_VERSION
# to map to rvtooldefs.h
COMPILER_TOOL_LINE:= "RV_TOOL_TYPE_COMPAQC"
ifeq ($(COMPILER_TOOL_VERSION), 5.6)
COMPILER_TOOL_VERSION_LINE:= "RV_TOOL_COMPAQC_5_6"
endif
ifeq ($(COMPILER_TOOL_VERSION), 6.4)
COMPILER_TOOL_VERSION_LINE:= "RV_TOOL_COMPAQC_6_4"
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 +=
# Compiler setup - COMPAQ defaults for all targets
CC := cc
CFLAGS += -pthread -w0 -D__STDC__
INCLUDE_FLAG := -I
C_DEBUGFLAG := -g
C_OPTFLAG := -fast
COMPILE_ONLY_FLAG := -c
OBJ_EXTENSION := .o
CC_OBJ_OUTPUT = -o $@
AR := ar
ARFLAGS := -rc
LIB_EXTENSION := .a
LIB_PREFIX := lib
LIB_OUTPUT = $@
LINK := cc
LIBS_FLAG := -l
LIBS_USE_FULLNAME := no
LIBS_DIRFLAG:= -L
LDFLAGS +=
LD_DEBUGFLAG := $(C_DEBUGFLAG)
DEPEND_EXTENSION:= .d
# Define full .d file generation command since they vary so much. The
# target will be the .d file and the first dependency will be the .c file.
MAKEDEPEND = set -e; $(CC) -M -c $(CFLAGS) $< | \
sed '1s*^*$*.d $(*D)/*' > $@; \
[ -s $@ ] || rm -f $@
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -