summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1996-11-08 06:08:10 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1996-11-08 06:08:10 +0000
commit16802300ecbe854a1bebd4d32f9bdb1f66373b8a (patch)
treed0481865adf1ba62f5155d8e574fee8118ec937f /Makefile
parent248b7a9530ec968126c986a267988e1db99f45f6 (diff)
Notes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index bf24e8d8243a..50b989e41024 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.57.4.17 1996/06/26 22:48:47 nate Exp $
+# $Id: Makefile,v 1.57.4.18 1996/08/11 03:05:16 rgrimes Exp $
#
# Make command line options:
# -DCLOBBER will remove /usr/include and MOST of /usr/lib
@@ -295,6 +295,12 @@ libraries:
cd ${.CURDIR}/lib/libtermcap && \
${MAKE} depend all install
.endif
+.if exists(lib)
+ cd ${.CURDIR}/lib/csu/i386 && \
+ ${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
+ cd ${.CURDIR}/lib && \
+ ${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
+.endif
.if exists(gnu)
cd ${.CURDIR}/gnu/lib && \
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
@@ -305,12 +311,6 @@ libraries:
cd ${.CURDIR}/secure/lib && \
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
.endif
-.if exists(lib)
- cd ${.CURDIR}/lib/csu/i386 && \
- ${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
- cd ${.CURDIR}/lib && \
- ${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
-.endif
cd ${.CURDIR}/usr.bin/lex/lib && \
${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
.if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)