diff options
author | bapt <bapt@FreeBSD.org> | 2015-05-21 12:51:56 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2015-05-21 12:51:56 +0000 |
commit | e18aff02df2e6df8d9ad2575ebbb6503523e6051 (patch) | |
tree | dcd96a7e8eb67a84ceb5ffbc585e5ba37e6a3541 /lib/libmandoc | |
parent | a6e346975c344c8521113b2c6552b36a9c332a73 (diff) | |
download | FreeBSD-src-e18aff02df2e6df8d9ad2575ebbb6503523e6051.zip FreeBSD-src-e18aff02df2e6df8d9ad2575ebbb6503523e6051.tar.gz |
Drop libmandoc and incorporate it into the main mandoc Makefile
This simplifies maintainance of mandoc(1).
Note that the same direction was taken on OpenBSD
Diffstat (limited to 'lib/libmandoc')
-rw-r--r-- | lib/libmandoc/Makefile | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/lib/libmandoc/Makefile b/lib/libmandoc/Makefile deleted file mode 100644 index 6529ea4..0000000 --- a/lib/libmandoc/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -# $FreeBSD$ - -MDOCMLDIR= ${.CURDIR}/../../contrib/mdocml -.PATH: ${MDOCMLDIR} - -LIB= mandoc -#NO_PIC= -INTERNALLIB= -MAN= mandoc.3 mandoc_headers.3 -LIBMAN_SRCS= man.c \ - man_hash.c \ - man_macro.c \ - man_validate.c - -LIBMDOC_SRCS= att.c \ - lib.c \ - mdoc.c \ - mdoc_argv.c \ - mdoc_hash.c \ - mdoc_macro.c \ - mdoc_validate.c \ - st.c - -LIBROFF_SRCS= eqn.c \ - roff.c \ - tbl.c \ - tbl_data.c \ - tbl_layout.c \ - tbl_opts.c - -SRCS= ${LIBMAN_SRCS} \ - ${LIBMDOC_SRCS} \ - ${LIBROFF_SRCS} \ - chars.c \ - mandoc.c \ - mandoc_aux.c \ - msec.c \ - preconv.c \ - read.c - -WARNS?= 3 -CFLAGS+= -DHAVE_CONFIG_H - -.include <bsd.lib.mk> |