?? borlandc.mk
字號:
# Makefile for using with Borland C++ 3.1
# To use this file type "make -f borlandc.mk [entry-point]"
# Entry Points:
# all (Default) build cocor c++ library
# clean Clean all objects and executable files
# CFLAGS:
# -ml for large memory model
# -w-pro suppress the "prototype warning"
# -O Optimization
CC = bcc
LIB = tlib
CFLAGS = -ml -w-pro -O
all: cr_lib.lib
cr_lib.lib:
$(CC) $(CFLAGS) -c cr_abs.cpp cr_error.cpp \
cr_scan.cpp cr_parse.cpp
$(LIB) cr_lib.lib +cr_abs.obj + cr_error.obj \
+cr_scan.obj +cr_parse.obj
clean:
del *.obj
del *.lib
del *.bak
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -