diff options
author | bde <bde@FreeBSD.org> | 1997-04-30 16:02:03 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-04-30 16:02:03 +0000 |
commit | 3c6902cf3bda0525d4b29a32a1d7c2a833ffb76a (patch) | |
tree | 25bb3f9e16434add253da23ce066ae3137f472bf /Makefile | |
parent | d6d51045f3f4d50286944151ff686fbccdd4f7cd (diff) | |
download | FreeBSD-src-3c6902cf3bda0525d4b29a32a1d7c2a833ffb76a.zip FreeBSD-src-3c6902cf3bda0525d4b29a32a1d7c2a833ffb76a.tar.gz |
Bootstrap the info `dir' file from here.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.120 1997/04/02 17:10:16 ache Exp $ +# $Id: Makefile,v 1.121 1997/04/09 18:59:36 jdp Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include @@ -36,7 +36,14 @@ # Put initial settings here. SUBDIR= -# We must do include and lib first so that the perl *.ph generation +# We must do share/info early so that installation of info `dir' +# entries works correctly. Do it first since it is less likely to +# grow dependencies on include and lib than vice versa. +.if exists(share/info) +SUBDIR+= share/info +.endif + +# We must do include and lib early so that the perl *.ph generation # works correctly as it uses the header files installed by this. .if exists(include) SUBDIR+= include @@ -401,7 +408,7 @@ includes: cd ${.CURDIR}/eBones/lib/libkrb && ${MAKE} beforeinstall cd ${.CURDIR}/eBones/lib/libkadm && ${MAKE} beforeinstall .endif - cd ${.CURDIR}/lib/csu/i386 && ${MAKE} beforeinstall + cd ${.CURDIR}/lib/csu/i386 && ${MAKE} beforeinstall cd ${.CURDIR}/lib/libc && ${MAKE} beforeinstall cd ${.CURDIR}/lib/libcurses && ${MAKE} beforeinstall cd ${.CURDIR}/lib/libedit && ${MAKE} beforeinstall |