⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 读取语音邮件的程序。联合vgetty和USR Modem使用
💻
字号:
# 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 + -