📄 makefile
字号:
# @(#)Makefile 8.1 (Berkeley) 6/6/93# The following is the telnet makefile for tn3270, using the shared telnet# sources.## TERMCAP Define this if your system is termcap based,# otherwise a terminfo based system is assumed.## SRCRT Includes code to allow you to specify source routes.# Format is:# [!]@hop1@hop2...[@|:]dst# Leading ! means strict source route.## NOSTRNCASECMP Define this if you do not have strncasecmp() in# your C libarary.## USE_TERMIO Define this if you have System V termio structures.# What is here is how things are on Cray computers.## KLUDGELINEMODE Define this to get the kludged up version of linemode# that was in 4.3BSD. This is a good thing to have# around for talking to older systems.#DEFINES= -DTERMCAP -DSRCRT -DKLUDGELINEMODE -DUSE_TERMIOVPATH = ${.CURDIR}/../../telnetXINCLUDES= -I${.CURDIR}/../../telnet -I${.CURDIR}INCLUDES=XDEFINES = -DTN3270OPTIMIZE= -OCFLAGS = ${OPTIMIZE} ${INCLUDES} ${DEFINES}XCFLAGS= ${XINCLUDES} ${XDEFINES}LD = ldLDFLAGS = -rPRINT = printACTION = sccs tellLIBC= /usr/lib/libc.aALLH= defines.h externs.h fdset.h general.h ring.h types.hSRCS= commands.c main.c network.c ring.c \ sys_bsd.c telnet.c terminal.c \ tn3270.c utilities.cALLHC= ${ALLH} ${SRCS}ALLPRINT = ${ALLHC}ALLSOURCE= ${ALLHC} Makefile Makefile_ultrixOBJS= commands.o main.o network.o ring.o sys_bsd.o \ telnet.o terminal.o tn3270.o utilities.o.c.o: ${CC} -c ${CFLAGS} ${XCFLAGS} $<telprog.o: ${OBJS} ${LIBC} ${LD} ${LDFLAGS} -o $@ ${OBJS}clean: FRC rm -f telprog.o ${OBJS} core telnetdepend: FRC ${SRCS} mkdep ${CFLAGS} ${SRCS}lint: FRC ${SRCS} lint ${CFLAGS} ${SRCS}tags: FRC ${ALLHC} ctags ${ALLHC}print: FRC ${ALLPRINT} ${PRINT} ${ALLPRINT}action: FRC ${ACTION}clist: FRC ${SRCS} @for i in ${SRCS} ; \ do (echo ${DIRPATH}$$i); donehclist: FRC ${ALLHC} @for i in ${ALLHC} ; \ do (echo ${DIRPATH}$$i); donesourcelist: FRC ${ALLSOURCE} @for i in ${ALLSOURCE} ../../telnet/Makefile ; \ do (echo ${DIRPATH}$$i); doneFRC:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -