diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-05-29 22:38:37 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-05-29 22:38:37 +0000 |
| commit | 5c6b0b391751cf944e107a5ddab480f5b3d82f51 (patch) | |
| tree | ee836fb7d1770d9cc76d401b0cbc83b61858ffc0 /gnu/usr.bin/groff/Makefile.dev | |
| parent | d2d02801b93cc9bf0c9fadd6d3a319d2ebe85b4e (diff) | |
Merge from HEAD, except:
Clients that used gnumalloc still do, despite the merge. We're not
bringing phkmalloc over.
Thread stuff left out.
PCCARD support left out.
Notes
svn path=/stable/2.1/; revision=15984
Diffstat (limited to 'gnu/usr.bin/groff/Makefile.dev')
| -rw-r--r-- | gnu/usr.bin/groff/Makefile.dev | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/gnu/usr.bin/groff/Makefile.dev b/gnu/usr.bin/groff/Makefile.dev index 4f6948fb19d6..2aa71f87e116 100644 --- a/gnu/usr.bin/groff/Makefile.dev +++ b/gnu/usr.bin/groff/Makefile.dev @@ -13,18 +13,15 @@ FONTMODE?= 444 all: $(FONTFILES) -.if !target(maninstall) -maninstall: - @echo -n -.endif - -.if !target(install) -install: - for f in $(FONTFILES); do \ - ff=$$f; test -f $$f || ff=${.CURDIR}/$$f || true; \ - install -c -o $(FONTOWN) -g $(FONTGRP) -m $(FONTMODE) $$ff \ - $(DESTDIR)$(DEVICEDIR)/$$f; \ - done +.for f in $(FONTFILES) +.if exists($f) +beforeinstall: $f +.else +beforeinstall: $(.CURDIR)/$f .endif +.endfor +beforeinstall: + $(INSTALL) -c -o $(FONTOWN) -g $(FONTGRP) -m $(FONTMODE) \ + ${.ALLSRC} $(DESTDIR)$(DEVICEDIR) .include <bsd.prog.mk> |
