📄 makefile.gcc
字号:
#-----------------------------------------------## Makefile for unix systems ## using a GNU C compiler ##-----------------------------------------------#CC=gccCFLAGS=-g -Wall -D__USE_FIXED_PROTOTYPES__ -ansi## Compiler flags:# -g -- Enable debugging# -Wall -- Turn on all warnings# -D__USE_FIXED_PROTOTYPES__# -- Force the compiler to use the correct headers# -ansi -- Don't use GNU extensions. Stick to ANSI C.total5w: total5w.c $(CC) $(CFLAGS) -o total5w total5w.cclean: rm -f total5w
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -