mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Don't use MANDEPEND. It hasn't had anything to do with dependencies for
5-6 years, but is still being used, mainly in groff/*/Makefile, where it
amounts to just a macro giving the list of generated man pages. Since
all man pages in groff are generated (from .man to .[1-9]), it's simpler
to use the source names ({$MANX}) to give the list.
Fixed some other style bugs.
16 lines
295 B
Makefile
16 lines
295 B
Makefile
# $FreeBSD$
|
|
|
|
MAN1= grog.1
|
|
CLEANFILES= grog ${MAN1}
|
|
|
|
all: grog
|
|
|
|
beforeinstall:
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} grog \
|
|
${DESTDIR}${BINDIR}
|
|
|
|
.include "../Makefile.cfg"
|
|
.include <bsd.prog.mk>
|
|
|
|
grog: ${DIST_DIR}/grog.sh
|
|
sed -e 's/gsoelim/soelim/' ${.ALLSRC} > ${.TARGET}
|