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

📄 borlandc.mk

📁 COCO類似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 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -