makefile.msc

来自「linux下的C语言开发」· MSC 代码 · 共 20 行

MSC
20
字号
#-----------------------------------------------#
#	Makefile for dos systems		#
#    using a Microsoft Visual C++ compiler	#
#-----------------------------------------------#
CC=cl
#
# Flags 
#	AL -- Compile for large model
#	Zi -- Enable debugging
#	W1 -- Turn on warnings
#
CFLAGS=/AL /Zi /W1

ret.exe: ret.c 
	@echo "This program will generate an error"
	$(CC) $(CFLAGS) ret.c 

clean:
	erase ret.exe 

⌨️ 快捷键说明

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