diff options
author | bde <bde@FreeBSD.org> | 1994-08-22 15:28:17 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1994-08-22 15:28:17 +0000 |
commit | a1893a4b8223e14f6b7bb2aebd0db09710882ef1 (patch) | |
tree | eebaa2ca58a32642d3aab992dc1e773a7f2a0c0a | |
parent | e1f08fe22b12c64078a082ebbd953d199e3dd0b9 (diff) | |
download | FreeBSD-src-a1893a4b8223e14f6b7bb2aebd0db09710882ef1.zip FreeBSD-src-a1893a4b8223e14f6b7bb2aebd0db09710882ef1.tar.gz |
- Make each target depend on its source so that all the targets don't get
get built every time.
- Use the standard clean and cleandir targets.
-rw-r--r-- | share/tabset/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/share/tabset/Makefile b/share/tabset/Makefile index a7de1b0..d3226e4 100644 --- a/share/tabset/Makefile +++ b/share/tabset/Makefile @@ -4,14 +4,15 @@ FILES= 3101 9837 aa aed512 beehive diablo dtc382 hp700-wy ibm3101 std \ stdcrt tandem653 teleray vt100 vt100-w wyse-adds xerox1720 xerox1730 \ xerox1730-lm zenith29 -depend lint tags: +CLEANFILES+= ${FILES} + +all: ${FILES} -clean cleandir: - rm -f ${FILES} +${FILES}: + uudecode < ${.CURDIR}/${.TARGET}.uu + +depend lint tags: -all: - for i in ${FILES} ; do uudecode < ${.CURDIR}/$$i.uu ; done - install: install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \ ${DESTDIR}${BINDIR}/tabset |