?? paradigm.mkf
字號:
#
# Borland C++ 2.0 Compiler/Linker command line option macros
# Copyright (C) 1995 Paradigm Systems. All rights reserved.
#
MKF = $(MKF) paradigm.mkf # Include in dependancies
#
# LIBS List of libraries to be linked with the application
# CFLAGS Compiler command line options
# AFLAGS Assembler command line options
# LFLAGS Linker command line options
# PFLAGS Paradigm LOCATE command line options
# OPTFLAGS Compiler optimization options
#
LIBS = $(COMPDIR)\lib\rc$(MODEL).lib $(COMPDIR)\lib\5920401$(MODEL).lib
CFLAGS = -c -m$(MODEL) -I. -I$(COMPDIR)\inc
AFLAGS = /mx /d__$(MODEL)__ /dSTKSIZE=$(STACK)
LFLAGS = /s /c /d /n
PFLAGS =
OPTFLAGS =
#
# Process the debug options. This step will optionally add debug
# information to the compiler, assembler, and linker, plus select the
# Paradigm LOCATE configuration file to build the application.
#
OUT = bin
CFG = rm
#
# Process the selected CPU option
#
CFLAGS = $(CFLAGS) -1
#
# Process the selected floating point option
#
CFLAGS = $(CFLAGS) -f-
#
# Process the advanced compiler options.
#
!if $(DUPSTRING) == 1
CFLAGS = $(CFLAGS) -d
!endif
!if $(CHECKSTACK) == 1
CFLAGS = $(CFLAGS) -N
!endif
!if $(WARNINGS) == 0
CFLAGS = $(CFLAGS) -w-
!elif $(WARNINGS) == 1
CFLAGS = $(CFLAGS) -w
!else
!error Invalid WARNINGS option selected
!endif
!if $(OPTIMIZE) == 0
OPTFLAGS = $(OPTFLAGS) -O-
!elif $(OPTIMIZE) == 1
OPTFLAGS = $(OPTFLAGS) -G-
!elif $(OPTIMIZE) == 2
OPTFLAGS = $(OPTFLAGS) -G
!else
!error Invalid OPTIMIZE option selected
!endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -