c566d4623b
- Enable installing binutils from the base system. - Import texinfo which is required for the binutils tools to be compiled. - Also adapted the fetch rules to correctly generate the gitignore files for gcc, and allow the case of multiple modules in the same directory, as found in gnu/dist. Warning: This patch has an entry in docs/UPDATING Change-Id: Ib781734e8fd7f9c6265fa65d62ba2cf3fccbc5ba
20 lines
639 B
Makefile
20 lines
639 B
Makefile
# $NetBSD: Makefile,v 1.6 2010/02/03 15:34:39 roy Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= info
|
|
SRCS= dir.c display.c dribble.c echo-area.c filesys.c \
|
|
footnotes.c gc.c indices.c info-utils.c info.c infodoc.c \
|
|
infomap.c m-x.c man.c nodemenu.c nodes.c search.c session.c \
|
|
signals.c terminal.c tilde.c variables.c window.c
|
|
|
|
COMMONDIR!=cd ${.CURDIR}/../common && ${PRINTOBJDIR}
|
|
|
|
CPPFLAGS+= -I${IDIST}/info -I${COMMONDIR} \
|
|
-DDEFAULT_INFOPATH=\"/usr/pkg/info:/usr/X11R6/info:/usr/X11/info:/usr/local/info:/usr/share/info:/usr/info\"
|
|
LDADD+= -lterminfo
|
|
DPADD+= ${LIBTERMINFO}
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${IDIST}/info ${IDIST}/doc
|