mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-19 01:11:05 +01:00
15 lines
291 B
Makefile
15 lines
291 B
Makefile
# Makefile for tfmtodit
|
|
|
|
PROG= tfmtodit
|
|
SRCS= tfmtodit.cc
|
|
CFLAGS+= -I${.CURDIR}/../include
|
|
LDADD+= ${LIBGROFF} -lm
|
|
DPADD+= ${LIBGROFF} ${LIBMATH}
|
|
|
|
MANDEPEND= tfmtodit.1
|
|
CLEANFILES+= ${MANDEPEND}
|
|
|
|
.include "../../../usr.bin/Makefile.inc"
|
|
.include "../Makefile.cfg"
|
|
.include <bsd.prog.mk>
|