borlandc.mk

来自「自己写的关于编译原理的实验报告的源代码」· MK 代码 · 共 48 行

MK
48
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?