makefile.generic
来自「Linux下的socks的程序源程序,用于socks的代理服务」· GENERIC 代码 · 共 98 行
GENERIC
98 行
## Copyright (c) 1991 The Regents of the University of California.# All rights reserved.## Redistribution and use in source and binary forms are permitted provided# that: (1) source distributions retain this entire copyright notice and# comment, and (2) distributions including binaries display the following# acknowledgement: ``This product includes software developed by the# University of California, Berkeley and its contributors'' in the# documentation or other materials provided with the distribution and in# all advertising materials mentioning features or use of this software.# Neither the name of the University nor the names of its contributors may# be used to endorse or promote products derived from this software without# specific prior written permission.# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED# WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.## @(#)Makefile.generic 5.5 (Berkeley) 3/1/91## Directory into which rtelnet program will be installed:BIN_DEST_DIR=/usr/local/bin# Directory into which rtelnet's man page file will be installed:MAN_DEST_DIR=/usr/local/man/man1#=============================================================INCLUDES= -I.. -I../../includeARPA_TELNET= ../arpa/telnet.hSRCS= commands.c main.c network.c ring.c \ sys_bsd.c telnet.c terminal.c \ utilities.c ${GETOPT_SRC}CFLAGS= ${LCCFLAGS} ${INCLUDES} ${DEFINES}ALLHC= ${SRCS} \ defines.h externs.h fdset.h general.h \ ring.h types.hOBJS= authenc.o commands.o main.o network.o ring.o sys_bsd.o \ telnet.o terminal.o utilities.o ${GETOPT_OBJ}MAN= telnet.0## These next three lines are not needed in 4.4BSD#.SUFFIXES: .0 .1.1.0: nroff -man -h $< > $@all: ../rtelnet../rtelnet: ${OBJS} ${LIBPATH} ${CC} -o $@ ${CFLAGS} ${OBJS} ${LIBS}clean: FRC rm -f ${OBJS} core errs l.errs ../rtelnetcleandir: clean rm -f ${MAN} tags .dependclist: FRC ${SRCS} @for i in ${SRCS} ; \ do (echo ${DIRPATH}$$i); donehclist: FRC ${ALLHC} @for i in ${ALLHC} ; \ do (echo ${DIRPATH}$$i); donedepend: FRC ${SRCS} mkdep ${CFLAGS} `make clist`install: ${MAN} FRC install -s -o bin -g bin -m 111 ../rtelnet ${BIN_DEST_DIR} install -c -o bin -g bin -m 444 rtelnet.1 ${MAN_DEST_DIR}lint: FRC ${SRCS} lint ${CFLAGS} `make clist`tags: FRC ${SRCS} ctags `make hclist`FRC:authenc.o: defines.h externs.h general.h ring.h types.h ${ARPA_TELNET}commands.o: defines.h externs.h general.h ring.h types.h ${ARPA_TELNET}main.o: defines.h externs.h ring.hnetwork.o: defines.h externs.h fdset.h ring.h ${ARPA_TELNET}ring.o: general.h ring.hsys_bsd.o: defines.h externs.h fdset.h ring.h types.h ${ARPA_TELNET}telnet.o: defines.h externs.h general.h ring.h types.h ${ARPA_TELNET}terminal.o: externs.h ring.h types.h ${ARPA_TELNET}tn3270.o: defines.h externs.h fdset.h general.h ring.h ${ARPA_TELNET}utilities.o: defines.h externs.h fdset.h general.h ring.h ${ARPA_TELNET}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?