89ba97703c
slattach always exited early because fd is not open in acquire_line(). Other (trivial) changes that I've been neglecting for some time: - Turn off O_NONBLOCK so that `chat' doesn't need to worry about it (`chat' actually does worry about it). - Really set speeds POSIXly :-). cfsetspeed() isn't POSIX. - Fix spelling error in comment. - Gripe about bad programming of doing everything from signal handlers. slattach should be written to do everything from the sigsuspend() loop, but I don't want to do it :-). From me: Use .PATH to find uucplock.c Submitted by: bde
15 lines
303 B
Makefile
15 lines
303 B
Makefile
# @(#)Makefile 5.4 (Berkeley) 5/11/90
|
|
#
|
|
# $Header: /home/ncvs/src/sbin/slattach/Makefile,v 1.5 1995/09/19 03:27:23 ache Exp $
|
|
|
|
PROG= slattach
|
|
SRCS= slattach.c uucplock.c
|
|
MAN8= slattach.8
|
|
MLINKS= slattach.8 slip.8
|
|
LDADD= -lutil
|
|
DPADD= ${LIBUTIL}
|
|
|
|
.PATH: ${.CURDIR}/../startslip
|
|
|
|
.include <bsd.prog.mk>
|