diff options
author | asmodai <asmodai@FreeBSD.org> | 2000-01-12 13:14:27 +0000 |
---|---|---|
committer | asmodai <asmodai@FreeBSD.org> | 2000-01-12 13:14:27 +0000 |
commit | 4224707d6633946d07ae608bde02d805aaff6da1 (patch) | |
tree | 23ee437c9f44855ea42b2ef51a51d69403dadac2 /gnu | |
parent | aa0797a50e5b8be7b39a070ac829e8491cdd7506 (diff) | |
download | FreeBSD-src-4224707d6633946d07ae608bde02d805aaff6da1.zip FreeBSD-src-4224707d6633946d07ae608bde02d805aaff6da1.tar.gz |
Add bmake glue for devhtml and grohtml of the groff package.
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> |