diff options
author | jhay <jhay@FreeBSD.org> | 1997-06-08 14:03:23 +0000 |
---|---|---|
committer | jhay <jhay@FreeBSD.org> | 1997-06-08 14:03:23 +0000 |
commit | 01d98d43a4322b5f8b6e77c9ef6102d70c0f64ae (patch) | |
tree | 8b70ad31f4e998a9db144cf6118a2bd44b38783a /Makefile | |
parent | 163e244be17133e1a9ab704377f873802b50400c (diff) | |
download | FreeBSD-src-01d98d43a4322b5f8b6e77c9ef6102d70c0f64ae.zip FreeBSD-src-01d98d43a4322b5f8b6e77c9ef6102d70c0f64ae.tar.gz |
Add libmp and libz to the includes target. This makes "make includes -DCLOBBER;
make depend; make all" work. I think there should be a better than adding
each library directory here.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.127 1997/05/21 22:48:51 asami Exp $ +# $Id: Makefile,v 1.128 1997/05/26 05:27:37 peter Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include @@ -388,6 +388,7 @@ includes: cd ${.CURDIR}/gnu/lib/libstdc++ && ${MAKE} beforeinstall cd ${.CURDIR}/gnu/lib/libg++ && ${MAKE} beforeinstall cd ${.CURDIR}/gnu/lib/libdialog && ${MAKE} beforeinstall + cd ${.CURDIR}/gnu/lib/libmp && ${MAKE} beforeinstall .if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES) cd ${.CURDIR}/eBones/include && ${MAKE} beforeinstall cd ${.CURDIR}/eBones/lib/libkrb && ${MAKE} beforeinstall @@ -414,6 +415,7 @@ includes: cd ${.CURDIR}/lib/libss && ${MAKE} beforeinstall cd ${.CURDIR}/lib/libscsi && ${MAKE} beforeinstall cd ${.CURDIR}/lib/libutil && ${MAKE} beforeinstall + cd ${.CURDIR}/lib/libz && ${MAKE} beforeinstall # # lib-tools - build tools to compile and install the libraries. |