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

📄 makefile

📁 常用于卫星通信方面
💻
字号:
## ppp_current_tx_len makefile# $Id: Makefile,v 1.1 2005/10/21 18:41:30 feighery Exp $#PPPSTATSRCS = ppp_current_tx_len.cPPPSTATOBJS = ppp_current_tx_len.o#CC = gccCOPTS = -O -g  -WallCOMPILE_FLAGS = -I../includeLIBS =INSTALL= install -o root -g daemonCFLAGS = $(COPTS) $(COMPILE_FLAGS)all: ppp_current_tx_leninstall: ppp_current_tx_len	-mkdir -p $(MANDIR)/man8	$(INSTALL) -s -c ppp_current_tx_len $(BINDIR)/ppp_current_tx_len#	$(INSTALL) -c -m 444 pppstats.8 $(MANDIR)/man8/pppstats.8ppp_current_tx_len: $(PPPSTATSRCS)	$(CC) $(CFLAGS) -o ppp_current_tx_len ppp_current_tx_len.c $(LIBS)clean:	rm -f ppp_current_tx_len *~ #* coredepend:	cpp -M $(CFLAGS) $(PPPSTATSRCS) >.depend#	makedepend $(CFLAGS) $(PPPSTATSRCS)

⌨️ 快捷键说明

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