freebsd-dev/gnu/usr.bin/groff/Makefile.dev

31 lines
596 B
Makefile
Raw Normal View History

1995-01-15 08:30:25 +00:00
# @(#)Makefile.dev 6.2 (Berkeley) 3/16/91
# Client Makefiles define DEVICE and FONTFILES and provide rules for
# individual font files
.include "../Makefile.cfg"
FONTDIR?= /usr/share/groff_font
DEVICEDIR?= $(FONTDIR)/dev$(DEVICE)
FONTOWN?= bin
FONTGRP?= bin
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 \
1995-01-15 08:30:25 +00:00
$(DESTDIR)$(DEVICEDIR)/$$f; \
done
.endif
.include <bsd.prog.mk>