diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2000-12-06 08:35:46 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2000-12-06 08:35:46 +0000 |
commit | 0727d1b5ba8b9b04753151454bf82b040a3fc3ad (patch) | |
tree | 9808ac54dcc6d13856fea8846225413e15886d00 /gnu/usr.bin/groff/font | |
parent | 138e514cb5fda28c7690adcc9c240020d7ec4912 (diff) | |
download | src-test2-0727d1b5ba8b9b04753151454bf82b040a3fc3ad.tar.gz src-test2-0727d1b5ba8b9b04753151454bf82b040a3fc3ad.zip |
Notes
Diffstat (limited to 'gnu/usr.bin/groff/font')
-rw-r--r-- | gnu/usr.bin/groff/font/Makefile.dev | 22 | ||||
-rw-r--r-- | gnu/usr.bin/groff/font/Makefile.tty | 2 |
2 files changed, 3 insertions, 21 deletions
diff --git a/gnu/usr.bin/groff/font/Makefile.dev b/gnu/usr.bin/groff/font/Makefile.dev index 3f9d50617ba1..dcff4f87d497 100644 --- a/gnu/usr.bin/groff/font/Makefile.dev +++ b/gnu/usr.bin/groff/font/Makefile.dev @@ -1,7 +1,3 @@ -# @(#)Makefile.dev 6.2 (Berkeley) 3/16/91 -# Client Makefiles define DEV and DEVFILES and provide rules for -# individual font files -# # $FreeBSD$ .include "../Makefile.cfg" @@ -14,20 +10,8 @@ FONTMODE?= ${NOBINMODE} all: $(DEVFILES) -.for f in $(DEVFILES) -.if exists(${.OBJDIR}/$f) -beforeinstall:: ${.OBJDIR}/$f - $(INSTALL) -c -o $(FONTOWN) -g $(FONTGRP) -m $(FONTMODE) \ - ${.OBJDIR}/$f $(DESTDIR)$(DEVICEDIR) -.elif exists(${.CURDIR}/$f) -beforeinstall:: ${.CURDIR}/$f - $(INSTALL) -c -o $(FONTOWN) -g $(FONTGRP) -m $(FONTMODE) \ - ${.CURDIR}/$f $(DESTDIR)$(DEVICEDIR) -.else -beforeinstall:: $(DIST_DIR)/$f - $(INSTALL) -c -o $(FONTOWN) -g $(FONTGRP) -m $(FONTMODE) \ - $(DIST_DIR)/$f $(DESTDIR)$(DEVICEDIR) -.endif -.endfor +beforeinstall: ${DEVFILES} + ${INSTALL} -c -o ${FONTOWN} -g ${FONTGRP} -m ${FONTMODE} \ + ${.ALLSRC} ${DESTDIR}${DEVICEDIR} .include <bsd.prog.mk> diff --git a/gnu/usr.bin/groff/font/Makefile.tty b/gnu/usr.bin/groff/font/Makefile.tty index 6d27a3b42b4a..94ca32e2a152 100644 --- a/gnu/usr.bin/groff/font/Makefile.tty +++ b/gnu/usr.bin/groff/font/Makefile.tty @@ -30,5 +30,3 @@ DESC: DESC.proto -e "s/^vert .*$$/vert `expr $(RES) / $(LPI)`/" \ -e "s/^fonts .*$$/fonts `set $(FONTS); echo $$#` $(FONTS)/" \ ${DIST_DIR}/DESC.proto >$@ - -beforeinstall:: ${DEVFILES} |