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

📄 makefile.orig

📁 用于使用moden进行传真的源代码
💻 ORIG
字号:
# Makefile for efax# Change the following to the name of your ANSI C compiler# (normally gcc).CC=gcc# Compile/load options. Add -DNO_STRERROR to CFLAGS if _strerror# is undefinedCFLAGS=LDFLAGS=# Change the following to the destination directories for# binaries and man pages. Probably /usr/bin and /usr/man on# Linux, /usr/local/{bin,man} on other systems.BINDIR=/usr/binMANDIR=/usr/man.c.o:	$(CC) $(CFLAGS) -c $<all:	efax efixefax:	efax.o efaxlib.o efaxio.o efaxos.o efaxmsg.o	$(CC) -o efax $(LDFLAGS) efax.o efaxlib.o efaxio.o efaxos.o efaxmsg.o	strip efaxefix:	efix.o efaxlib.o efaxmsg.o	$(CC) -o efix $(LDFLAGS) efix.o efaxlib.o efaxmsg.o	strip efixinstall:	cp fax efax efix $(BINDIR)	chmod 755 $(BINDIR)/fax $(BINDIR)/efax $(BINDIR)/efix	cp fax.1 efax.1 efix.1 $(MANDIR)/man1	chmod 644 $(MANDIR)/man1/fax.1 $(MANDIR)/man1/efax.1  \		$(MANDIR)/man1/efix.1clean:		rm -f efax efix efax.o efix.o efaxlib.o efaxio.o efaxos.o efaxmsg.oefax.o:		efax.c    efaxmsg.h efaxlib.h efaxio.h efaxos.hefaxio.o:	efaxio.c  efaxmsg.h           efaxio.h efaxos.hefaxos.o:	efaxos.c  efaxmsg.h efaxlib.h          efaxos.hefix.o:		efix.c    efaxmsg.h efaxlib.h           efaxlib.o:	efaxlib.c efaxmsg.h efaxlib.h           efaxmsg.o:	efaxmsg.c efaxmsg.h

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -