- remove generated files
- remove libdriver dependencies where they are not needed - add bin to Makefile
This commit is contained in:
parent
c57a971ad4
commit
10494598b6
4
external/gpl2/groff/Makefile
vendored
4
external/gpl2/groff/Makefile
vendored
@ -1,7 +1,7 @@
|
||||
# $NetBSD: Makefile,v 1.1 2016/01/13 19:01:55 christos Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2016/01/14 02:30:18 christos Exp $
|
||||
|
||||
# $FreeBSD: src/gnu/usr.bin/groff/Makefile,v 2.11 2003/05/02 00:55:52 ru Exp $
|
||||
|
||||
SUBDIR= lib .WAIT doc font man tmac devices
|
||||
SUBDIR= lib .WAIT bin doc font man tmac devices
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
|
4
external/gpl2/groff/Makefile.inc
vendored
4
external/gpl2/groff/Makefile.inc
vendored
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile.inc,v 1.1 2016/01/13 19:01:55 christos Exp $
|
||||
# $NetBSD: Makefile.inc,v 1.2 2016/01/14 02:30:18 christos Exp $
|
||||
|
||||
# $FreeBSD: src/gnu/usr.bin/groff/Makefile.inc,v 2.7 2003/05/01 13:22:18 ru Exp $
|
||||
|
||||
@ -79,7 +79,9 @@ DIST= ${NETBSDSRCDIR}/external/gpl2/groff
|
||||
GROFF_DIST= ${DIST}/dist
|
||||
|
||||
PROGDPLIBS+= bib ${DIST}/lib/libbib
|
||||
.if !defined(NOLIBDRIVER)
|
||||
PROGDPLIBS+= driver ${DIST}/lib/libdriver
|
||||
.endif
|
||||
PROGDPLIBS+= groff ${DIST}/lib/libgroff
|
||||
|
||||
CPPFLAGS+= -DHAVE_CONFIG_H
|
||||
|
3
external/gpl2/groff/bin/eqn/Makefile
vendored
3
external/gpl2/groff/bin/eqn/Makefile
vendored
@ -1,9 +1,10 @@
|
||||
# $NetBSD: Makefile,v 1.1 2016/01/13 19:01:56 christos Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2016/01/14 02:30:18 christos Exp $
|
||||
|
||||
# $FreeBSD: src/gnu/usr.bin/groff/src/preproc/eqn/Makefile,v 1.4 2003/05/01 13:22:19 ru Exp $
|
||||
|
||||
DIST_SUBDIR= src/preproc/eqn
|
||||
GROFFYSRCS= eqn.y
|
||||
NOLIBDRIVER=
|
||||
|
||||
.include <bsd.init.mk>
|
||||
|
||||
|
3
external/gpl2/groff/bin/grn/Makefile
vendored
3
external/gpl2/groff/bin/grn/Makefile
vendored
@ -1,8 +1,9 @@
|
||||
# $NetBSD: Makefile,v 1.1 2016/01/13 19:01:56 christos Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2016/01/14 02:30:18 christos Exp $
|
||||
|
||||
# $FreeBSD: src/gnu/usr.bin/groff/src/preproc/grn/Makefile,v 1.4 2003/05/01 13:22:19 ru Exp $
|
||||
|
||||
DIST_SUBDIR= src/preproc/grn
|
||||
NOLIBDRIVER=
|
||||
|
||||
.include <bsd.init.mk>
|
||||
|
||||
|
3
external/gpl2/groff/bin/groff/Makefile
vendored
3
external/gpl2/groff/bin/groff/Makefile
vendored
@ -1,8 +1,9 @@
|
||||
# $NetBSD: Makefile,v 1.1 2016/01/13 19:01:56 christos Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2016/01/14 02:30:18 christos Exp $
|
||||
|
||||
# $FreeBSD: src/gnu/usr.bin/groff/src/roff/groff/Makefile,v 1.7 2003/05/01 13:22:20 ru Exp $
|
||||
|
||||
DIST_SUBDIR= src/roff/groff
|
||||
NOLIBDRIVER=
|
||||
|
||||
.include <bsd.init.mk>
|
||||
|
||||
|
3
external/gpl2/groff/bin/hpftodit/Makefile
vendored
3
external/gpl2/groff/bin/hpftodit/Makefile
vendored
@ -1,8 +1,9 @@
|
||||
# $NetBSD: Makefile,v 1.1 2016/01/13 19:01:56 christos Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2016/01/14 02:30:18 christos Exp $
|
||||
|
||||
# $FreeBSD: src/gnu/usr.bin/groff/src/utils/hpftodit/Makefile,v 1.4 2003/05/01 13:22:20 ru Exp $
|
||||
|
||||
DIST_SUBDIR= src/utils/hpftodit
|
||||
NOLIBDRIVER=
|
||||
|
||||
.include <bsd.init.mk>
|
||||
|
||||
|
3
external/gpl2/groff/bin/html/Makefile
vendored
3
external/gpl2/groff/bin/html/Makefile
vendored
@ -1,9 +1,10 @@
|
||||
# $NetBSD: Makefile,v 1.1 2016/01/13 19:01:56 christos Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2016/01/14 02:30:18 christos Exp $
|
||||
|
||||
# $FreeBSD: src/gnu/usr.bin/groff/src/preproc/html/Makefile,v 1.5 2003/05/01 13:22:20 ru Exp $
|
||||
|
||||
NOMAN= YES
|
||||
DIST_SUBDIR= src/preproc/html
|
||||
NOLIBDRIVER=
|
||||
|
||||
.include <bsd.init.mk>
|
||||
|
||||
|
3
external/gpl2/groff/bin/pic/Makefile
vendored
3
external/gpl2/groff/bin/pic/Makefile
vendored
@ -1,9 +1,10 @@
|
||||
# $NetBSD: Makefile,v 1.1 2016/01/13 19:01:57 christos Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2016/01/14 02:30:18 christos Exp $
|
||||
|
||||
# $FreeBSD: src/gnu/usr.bin/groff/src/preproc/pic/Makefile,v 1.4 2003/05/01 13:22:20 ru Exp $
|
||||
|
||||
GROFFYSRCS= pic.y
|
||||
DIST_SUBDIR= src/preproc/pic
|
||||
NOLIBDRIVER=
|
||||
|
||||
.include <bsd.init.mk>
|
||||
|
||||
|
3
external/gpl2/groff/bin/refer/Makefile
vendored
3
external/gpl2/groff/bin/refer/Makefile
vendored
@ -1,9 +1,10 @@
|
||||
# $NetBSD: Makefile,v 1.1 2016/01/13 19:01:57 christos Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2016/01/14 02:30:18 christos Exp $
|
||||
|
||||
# $FreeBSD: src/gnu/usr.bin/groff/src/preproc/refer/Makefile,v 1.4 2003/05/01 13:22:20 ru Exp $
|
||||
|
||||
GROFFYSRCS= label.y
|
||||
DIST_SUBDIR= src/preproc/refer
|
||||
NOLIBDRIVER=
|
||||
|
||||
.include <bsd.init.mk>
|
||||
|
||||
|
3
external/gpl2/groff/bin/soelim/Makefile
vendored
3
external/gpl2/groff/bin/soelim/Makefile
vendored
@ -1,8 +1,9 @@
|
||||
# $NetBSD: Makefile,v 1.1 2016/01/13 19:01:57 christos Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2016/01/14 02:30:18 christos Exp $
|
||||
|
||||
# $FreeBSD: src/gnu/usr.bin/groff/src/preproc/soelim/Makefile,v 1.3 2003/05/01 13:22:20 ru Exp $
|
||||
|
||||
DIST_SUBDIR= src/preproc/soelim
|
||||
NOLIBDRIVER=
|
||||
|
||||
.include <bsd.init.mk>
|
||||
|
||||
|
3
external/gpl2/groff/bin/tbl/Makefile
vendored
3
external/gpl2/groff/bin/tbl/Makefile
vendored
@ -1,8 +1,9 @@
|
||||
# $NetBSD: Makefile,v 1.1 2016/01/13 19:01:57 christos Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2016/01/14 02:30:18 christos Exp $
|
||||
|
||||
# $FreeBSD: src/gnu/usr.bin/groff/src/preproc/tbl/Makefile,v 1.4 2003/05/01 13:22:20 ru Exp $
|
||||
|
||||
DIST_SUBDIR= src/preproc/tbl
|
||||
NOLIBDRIVER=
|
||||
|
||||
.include <bsd.init.mk>
|
||||
|
||||
|
3
external/gpl2/groff/bin/troff/Makefile
vendored
3
external/gpl2/groff/bin/troff/Makefile
vendored
@ -1,8 +1,9 @@
|
||||
# $NetBSD: Makefile,v 1.1 2016/01/13 19:01:57 christos Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2016/01/14 02:30:18 christos Exp $
|
||||
|
||||
# $FreeBSD: src/gnu/usr.bin/groff/src/roff/troff/Makefile,v 1.4 2003/05/01 13:22:20 ru Exp $
|
||||
|
||||
DIST_SUBDIR= src/roff/troff
|
||||
NOLIBDRIVER=
|
||||
|
||||
.include <bsd.init.mk>
|
||||
|
||||
|
5689
external/gpl2/groff/dist/src/preproc/pic/pic.cpp
vendored
5689
external/gpl2/groff/dist/src/preproc/pic/pic.cpp
vendored
File diff suppressed because it is too large
Load Diff
1622
external/gpl2/groff/dist/src/preproc/refer/label.cpp
vendored
1622
external/gpl2/groff/dist/src/preproc/refer/label.cpp
vendored
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user