9eb65820c1
flags and options. Requested by: andreas
21 lines
339 B
Makefile
21 lines
339 B
Makefile
# Makefile for grog
|
|
#
|
|
# $FreeBSD$
|
|
|
|
MAN1= grog.1
|
|
|
|
MANDEPEND= ${MAN1}
|
|
CLEANFILES+= ${MANDEPEND}
|
|
|
|
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}
|