freebsd-dev/share/examples/isdn/i4brunppp/Makefile
Hellmuth Michaelis 868080172d Add the i4brunppp utility to the example section. This utility is one way
of taking incoming calls with i4b in conjunction with userland ppp(8).
2001-07-21 11:49:28 +00:00

20 lines
414 B
Makefile

# $FreeBSD$
PROG = i4brunppp
SRCS = i4brunppp.c
MAN8 = i4brunppp.8
RUNPPPDEST= /etc/isdn
INSTALL ?= install
install:
@echo i4brunppp is not installed automatically. In case you want to run
@echo user-ppp in dial-in server under i4b, please copy it into /etc/isdn.
installetc: i4brunppp
${INSTALL} -c -m ${BINMODE} -o ${BINOWN} -g ${BINGRP} \
${.CURDIR}/i4brunppp ${RUNPPPDEST}
.include <bsd.prog.mk>