makefile
来自「读取语音邮件的程序。联合vgetty和USR Modem使用」· 代码 · 共 33 行
TXT
33 行
# 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 + =
减小字号Ctrl + -
显示快捷键?