📄 makefile.msc
字号:
#-----------------------------------------------## 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -