makefile

来自「tcp ip 网络协议代码 download download」· 代码 · 共 24 行

TXT
24
字号
# Change the following as required:CC	= gccCFLAGS	=# Following line for SVR4, Solaris 2.xLIBS	= /usr/ucblib/libucb.a -lsocket -lnsl# Following line for 4.4BSD, BSD/386, SunOS 4.x, AIX 3.2.2#LIBS	=PROGS =	traceroute.lsrr traceroute.pmtuOBJS = traceroute.lsrr.o traceroute.pmtu.oall:	${PROGS}traceroute.pmtu:	traceroute.pmtu.o			${CC} ${CFLAGS} -o $@ traceroute.pmtu.o ${LIBS}traceroute.lsrr:	traceroute.lsrr.o			${CC} ${CFLAGS} -o $@ traceroute.lsrr.o ${LIBS}clean:	rm -f ${PROGS} core core.* *.o temp.* *.out typescript*

⌨️ 快捷键说明

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