📄 makefile
字号:
# Makefile for Voice Reader built by Jeremy Garff# List of sources, objects, and program.SRCS = main.cOBJS = main.oPROG = voicereader# List of compiling options.COMP = gccCFLAGS = -g -WallLIBS = -L/usr/X11/lib -lgtk -lgdk -lglib -lXext -lX11 -lm# Linking the executable.$(PROG): $(OBJS); $(COMP) $(CFLAGS) -o $@ $(OBJS) $(LIBS)# Compiling each module.# Note: can be done differently.main.o: main.c; $(COMP) -c $(CFLAGS) main.c# Cleanup (removes files that can be rebuilt).clean: -rm -f $(PROG) $(OBJS)# DO NOT DELETE THIS LINE -- make depend depends on it.main.o:main.c
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -