makefile.msc
来自「linux下的C语言开发」· MSC 代码 · 共 30 行
MSC
30 行
#-----------------------------------------------## Makefile for dos systems ## Microsoft Visual C++ Compiler ##-----------------------------------------------##CC=cl## Flags # AL -- Compile for large model# Zi -- Enable debugging# W1 -- Turn on warnings#CFLAGS=/AL /Zi /W1SRC=hist.c ia.cppOBJ=hist.obj ia.objall: hist.exe hist.exe: $(OBJ) $(CC) $(CFLAGS) $(OBJ)hist.obj: ia.h hist.c $(CC) $(CFLAGS) -c hist.cia.obj: ia.h ia.c $(CC) $(CFLAGS) -c ia.cclean: erase hist.exe io.obj hist.obj
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?