📄 makefile
字号:
CFLAGS = -g -Wall#CFLAGS = -O2 -funroll-loops #------------------------------------------------------------------------------SRCS = showpat.CPRGS = showpat#------------------------------------------------------------------------------all: depend $(PRGS)showpat: font8x8.o showpat.o gcc -o showpat showpat.o font8x8.c -lg++ -lvgagl -lvga.C.o: $(CC) -c $(CFLAGS) $(DEFS) -o $*.o $<deltrash: rm -f *~ DEADJOE t tt logclean: deltrash rm -f *.o .dependdistclean: clean rm -f *.a#------------------------------------------------------------------------------# dependencies#------------------------------------------------------------------------------ifeq (.depend,$(wildcard .depend))include .dependdepend:elsedepend: $(SRCS) $(CPP) -M $(SRCS) > .dependendif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -