diff options
author | ru <ru@FreeBSD.org> | 2001-12-17 13:59:35 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-12-17 13:59:35 +0000 |
commit | bbef88e1a5535074053d60fa0fa2b5832f7de5ea (patch) | |
tree | 7fd7e5683e347709f8bd623688bd94074689c72a /share/isdn | |
parent | 650091c3142d295b29e3809e946f4d064cc805a4 (diff) | |
download | FreeBSD-src-bbef88e1a5535074053d60fa0fa2b5832f7de5ea.zip FreeBSD-src-bbef88e1a5535074053d60fa0fa2b5832f7de5ea.tar.gz |
FILES support for bsd.prog.mk. See bsd.README for details.
Stolen from: NetBSD
Diffstat (limited to 'share/isdn')
-rw-r--r-- | share/isdn/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/share/isdn/Makefile b/share/isdn/Makefile index 99025d8..0999d77 100644 --- a/share/isdn/Makefile +++ b/share/isdn/Makefile @@ -5,15 +5,11 @@ FILES= 0.al 1.al 2.al 3.al 4.al 5.al 6.al 7.al 8.al 9.al beep.al msg.al CLEANFILES+= ${FILES} -all: ${FILES} +.SUFFIXES: .uu -${FILES}: - uudecode < ${.CURDIR}/${.TARGET}.uu +.uu: + uudecode < ${.IMPSRC} -depend lint tags: - -install: - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${SHAREMODE} ${FILES} \ - ${DESTDIR}${BINDIR}/isdn +FILESDIR= ${BINDIR}/isdn .include <bsd.prog.mk> |