⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 borlandc.mk

📁 C/C++词法语法分析程序
💻 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 coco2msg
# clean Clean all objects and executable files

# CFLAGS:
# -ml           for large memory model
# -w-pro        suppress the "prototype warning"
# -O            Optimization

CFLAGS  = -ml -w-pro -O
CC      = bcc

#          *Implicit Rules*
.c.obj:
		$(CC) -c $(CFLAGS) {$< }

all:            coco2msg.exe

coco2msg.exe:   coco2msg.obj
		$(CC)  $(CFLAGS) -ecoco2msg.exe coco2msg.obj

clean:
		del *.obj
		del *.exe 





















⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -