diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/groff/devhtml/Makefile | 9 | ||||
-rw-r--r-- | gnu/usr.bin/groff/grohtml/Makefile | 15 |
2 files changed, 24 insertions, 0 deletions
diff --git a/gnu/usr.bin/groff/devhtml/Makefile b/gnu/usr.bin/groff/devhtml/Makefile new file mode 100644 index 0000000..1a50e26 --- /dev/null +++ b/gnu/usr.bin/groff/devhtml/Makefile @@ -0,0 +1,9 @@ +# $FreeBSD$ +# +# Generic groff font makefile + +NOOBJ= + +.include "${.CURDIR}/../Makefile.inc" +.include "${DIST_DIR}/Makefile.sub" +.include "${.CURDIR}/../Makefile.dev" diff --git a/gnu/usr.bin/groff/grohtml/Makefile b/gnu/usr.bin/groff/grohtml/Makefile new file mode 100644 index 0000000..10111e9 --- /dev/null +++ b/gnu/usr.bin/groff/grohtml/Makefile @@ -0,0 +1,15 @@ +# $FreeBSD$ +# +# Makefile for grohtml + +PROG= grohtml +SRCS= html.cc + +LDADD+= ${LIBDRIVER} ${LIBGROFF} -lm +DPADD+= ${LIBDRIVER} ${LIBGROFF} ${LIBM} + +MANDEPEND= grohtml.1 +CLEANFILES+= ${MANDEPEND} + +.include "../Makefile.cfg" +.include <bsd.prog.mk> |