19c749625f
ISDN4BSD is the work of our brand-new comitter: Hellmuth Michaelis, who has done a tremendous amount of work to bring us this far. There are still some outstanding issues and files to bring into the tree, and for now it will be needed to pick up all the extra docs from the isdn4bsd release. It is probably also a very good idea to subscribe to the isdn@freebsd.org mailing list before you try this out. These files correspond to release "beta Version 0.70.00 / December 1998" from Hellmuth.
21 lines
445 B
Makefile
21 lines
445 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/8/93
|
|
# $Id: Makefile,v 1.8 1998/01/03 14:13:46 wosch Exp $
|
|
|
|
FILES= 0.g711a 1.g711a 2.g711a 3.g711a 4.g711a 5.g711a 6.g711a 7.g711a \
|
|
8.g711a 9.g711a beep.g711a msg.g711a
|
|
|
|
CLEANFILES+= ${FILES}
|
|
|
|
all: ${FILES}
|
|
|
|
${FILES}:
|
|
uudecode < ${.CURDIR}/${.TARGET}.uu
|
|
|
|
depend lint tags:
|
|
|
|
install:
|
|
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${SHAREMODE} ${FILES} \
|
|
${DESTDIR}${BINDIR}/isdn
|
|
|
|
.include <bsd.prog.mk>
|