mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
17 lines
336 B
Makefile
17 lines
336 B
Makefile
# $FreeBSD$
|
|
|
|
.include "../Makefile.cfg"
|
|
|
|
FONTDIR?= /usr/share/groff_font
|
|
DEVICEDIR?= $(FONTDIR)/dev$(DEV)
|
|
FONTOWN?= ${BINOWN}
|
|
FONTGRP?= ${BINGRP}
|
|
FONTMODE?= ${NOBINMODE}
|
|
|
|
all: $(DEVFILES)
|
|
|
|
beforeinstall: ${DEVFILES}
|
|
${INSTALL} -c -o ${FONTOWN} -g ${FONTGRP} -m ${FONTMODE} \
|
|
${.ALLSRC} ${DESTDIR}${DEVICEDIR}
|
|
|
|
.include <bsd.prog.mk>
|