Deleted Added
full compact
Makefile (4942) Makefile (5366)
1#
1#
2# $Id: Makefile,v 1.30 1994/11/14 20:52:54 phk Exp $
2# $Id: Makefile,v 1.31 1994/12/04 02:46:28 ache Exp $
3#
4# Make command line options:
5# -DCLOBBER will remove /usr/include and MOST of /usr/lib
6# -DMAKE_LOCAL to add ./local to the SUBDIR list
7# -DMAKE_PORTS to add ./ports to the SUBDIR list
8# XXX1 -DMAKE_KERBEROS to build KerberosIV
9# -DMAKE_EBONES to build eBones (KerberosIV)
10#

--- 87 unchanged lines hidden (view full) ---

98OBJDIR= obj
99.endif
100.if defined(NOCLEANDIR)
101CLEANDIR= clean
102.else
103CLEANDIR= cleandir
104.endif
105
3#
4# Make command line options:
5# -DCLOBBER will remove /usr/include and MOST of /usr/lib
6# -DMAKE_LOCAL to add ./local to the SUBDIR list
7# -DMAKE_PORTS to add ./ports to the SUBDIR list
8# XXX1 -DMAKE_KERBEROS to build KerberosIV
9# -DMAKE_EBONES to build eBones (KerberosIV)
10#

--- 87 unchanged lines hidden (view full) ---

98OBJDIR= obj
99.endif
100.if defined(NOCLEANDIR)
101CLEANDIR= clean
102.else
103CLEANDIR= cleandir
104.endif
105
106world: hierarchy cleandist mk includes libraries tools
106world: hierarchy cleandist mk includes lib-tools libraries tools
107 @echo "--------------------------------------------------------------"
108 @echo " Rebuilding ${DESTDIR} The whole thing"
109 @echo "--------------------------------------------------------------"
110 @echo
111 ${MAKE} depend all install
112 cd ${.CURDIR}/share/man && ${MAKE} makedb
113
114

--- 115 unchanged lines hidden (view full) ---

230 cd ${.CURDIR}/lib/libncurses && ${MAKE} beforeinstall
231.if defined(WANT_MSUN)
232 cd ${.CURDIR}/lib/msun && ${MAKE} beforeinstall
233.endif
234 cd ${.CURDIR}/lib/librpcsvc && ${MAKE} beforeinstall
235 cd ${.CURDIR}/lib/libskey && ${MAKE} beforeinstall
236 cd ${.CURDIR}/lib/libtermcap && ${MAKE} beforeinstall
237
107 @echo "--------------------------------------------------------------"
108 @echo " Rebuilding ${DESTDIR} The whole thing"
109 @echo "--------------------------------------------------------------"
110 @echo
111 ${MAKE} depend all install
112 cd ${.CURDIR}/share/man && ${MAKE} makedb
113
114

--- 115 unchanged lines hidden (view full) ---

230 cd ${.CURDIR}/lib/libncurses && ${MAKE} beforeinstall
231.if defined(WANT_MSUN)
232 cd ${.CURDIR}/lib/msun && ${MAKE} beforeinstall
233.endif
234 cd ${.CURDIR}/lib/librpcsvc && ${MAKE} beforeinstall
235 cd ${.CURDIR}/lib/libskey && ${MAKE} beforeinstall
236 cd ${.CURDIR}/lib/libtermcap && ${MAKE} beforeinstall
237
238lib-tools:
239 @echo "--------------------------------------------------------------"
240 @echo " Rebuilding tools needed to build the libraries
241 @echo "--------------------------------------------------------------"
242 @echo
243 cd ${.CURDIR}/usr.bin/ar && \
244 ${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
245 cd ${.CURDIR}/usr.bin/ranlib && \
246 ${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
247 cd ${.CURDIR}/usr.bin/nm && \
248 ${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
249
238libraries:
239 @echo "--------------------------------------------------------------"
240 @echo " Rebuilding ${DESTDIR}/usr/lib"
241 @echo "--------------------------------------------------------------"
242 @echo
243.if defined(CLOBBER)
244 find ${DESTDIR}/usr/lib \! -name '*.s[ao].*' -a \! -type d | \
245 xargs rm -rf

--- 49 unchanged lines hidden ---
250libraries:
251 @echo "--------------------------------------------------------------"
252 @echo " Rebuilding ${DESTDIR}/usr/lib"
253 @echo "--------------------------------------------------------------"
254 @echo
255.if defined(CLOBBER)
256 find ${DESTDIR}/usr/lib \! -name '*.s[ao].*' -a \! -type d | \
257 xargs rm -rf

--- 49 unchanged lines hidden ---