f5ff0f7c99
These changes should fix the signal "problems" in ppp. The signal changes should really be put into 2.2 too ! The following patches should do it. There were some other changes made by Andrey recently that havn't been brought into 2.2, it may be worth doing them now.
20 lines
618 B
Makefile
20 lines
618 B
Makefile
# $Id: Makefile,v 1.15 1997/03/09 20:03:27 ache 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 uucplock.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 -DUSE_PERROR -DMSEXT -DPASSWDAUTH
|
|
LDADD += -lmd -lcrypt -lutil
|
|
DPADD += ${LIBMD} ${LIBCRYPT} ${LIBUTIL}
|
|
MAN8= ppp.8
|
|
BINMODE=4555
|
|
BINOWN= root
|
|
|
|
.PATH: ${.CURDIR}/../../sbin/startslip
|
|
|
|
.include <bsd.prog.mk>
|