mirror of
https://github.com/opnsense/src.git
synced 2026-03-05 06:40:31 -05:00
17 lines
410 B
Makefile
17 lines
410 B
Makefile
# Makefile for indxbib
|
|
|
|
PROG= indxbib
|
|
SRCS= indxbib.cc dirnamemax.c signal.c
|
|
CFLAGS+= -I${.CURDIR}/../include
|
|
LDADD+= ${LIBBIB} ${LIBGROFF} -lm
|
|
DPADD+= ${LIBBIB} ${LIBGROFF} ${LIBM}
|
|
|
|
MANDEPEND= indxbib.1
|
|
CLEANFILES+= ${MANDEPEND}
|
|
|
|
beforeinstall:
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
|
|
${DIST_DIR}/eign ${DESTDIR}${SHAREDIR}/dict/
|
|
|
|
.include "../Makefile.cfg"
|
|
.include <bsd.prog.mk>
|