687d0cdeb3
in uu_lock(). Add uu_lockerr() for turning the results of uu_lock into something printable. Remove bogus section in man page about race conditions allowing both processes to get the lock. Include libutil.h and use uu_lock() correctly where it should. Suggested by: ache@freebsd.org
18 lines
555 B
Makefile
18 lines
555 B
Makefile
# $Id: Makefile,v 1.17 1997/03/30 12:12:20 brian Exp $
|
|
|
|
PROG= ppp
|
|
SRCS= async.c auth.c ccp.c chap.c chat.c command.c filter.c fsm.c hdlc.c \
|
|
ip.c ipcp.c lcp.c lqr.c log.c main.c mbuf.c modem.c os.c \
|
|
pap.c pred.c route.c slcompress.c timer.c systems.c vars.c \
|
|
vjcomp.c arp.c alias.c alias_db.c alias_ftp.c alias_util.c \
|
|
passwdauth.c sig.c
|
|
#CFLAGS+= -DHAVE_SHELL_CMD_WITH_ANY_MODE
|
|
CFLAGS += -Wall -DMSEXT -DPASSWDAUTH
|
|
LDADD += -lmd -lcrypt -lutil
|
|
DPADD += ${LIBMD} ${LIBCRYPT} ${LIBUTIL}
|
|
MAN8= ppp.8
|
|
BINMODE=4555
|
|
BINOWN= root
|
|
|
|
.include <bsd.prog.mk>
|