borlandc.mk
来自「自己写的关于编译原理的实验报告的源代码」· MK 代码 · 共 43 行
MK
43 行
# 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
# new Clean and build cocor
# clean Clean all objects and executable files
MAKE = make
all:
cd coco2msg
$(MAKE) -f borlandc.mk
cd ..
cd sources
$(MAKE) -f borlandc.mk
cd ..
cd taste
$(MAKE) -f borlandc.mk
cd ..
cd cplus2
$(MAKE) -f borlandc.mk
cd ..
cd taste_cp
$(MAKE) -f borlandc.mk
cd ..
clean:
cd coco2msg
$(MAKE) -f borlandc.mk clean
cd ..
cd sources
$(MAKE) -f borlandc.mk clean
cd ..
cd taste
$(MAKE) -f borlandc.mk clean
cd ..
cd cplus2
$(MAKE) -f borlandc.mk clean
cd ..
cd taste_cp
$(MAKE) -f borlandc.mk clean
cd ..
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?