blob: 541398642ab47d3f55dddd6c4c0f6e3eb3e3479a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Makefile for tfmtodit
PROG= tfmtodit
SRCS= tfmtodit.cc
CFLAGS+= -I${.CURDIR}/../include
LDADD+= ${LIBGROFF} -lm
DPADD+= ${LIBGROFF} ${LIBM}
MANDEPEND= tfmtodit.1
CLEANFILES+= ${MANDEPEND}
.include "../Makefile.cfg"
.include <bsd.prog.mk>
|