Deleted Added
full compact
Makefile (14022) Makefile (14119)
1#
1#
2# $Id: Makefile,v 1.74 1996/01/30 05:46:35 nate Exp $
2# $Id: Makefile,v 1.75 1996/02/11 08:58:01 markm 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# -DMAKE_EBONES to build eBones (KerberosIV)
9#
10# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir

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

95WORLD_CLEANDIST=cleandist
96.if defined(NOCLEANDIR)
97CLEANDIR= clean
98.else
99CLEANDIR= cleandir
100.endif
101.endif
102
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# -DMAKE_EBONES to build eBones (KerberosIV)
9#
10# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir

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

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

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

207#.endif
208
209mk:
210 @echo "--------------------------------------------------------------"
211 @echo " Rebuilding ${DESTDIR}/usr/share/mk"
212 @echo "--------------------------------------------------------------"
213 cd ${.CURDIR}/share/mk && ${MAKE} install
214
104 @echo "--------------------------------------------------------------"
105 @echo " Rebuilding ${DESTDIR} The whole thing"
106 @echo "--------------------------------------------------------------"
107 @echo
108 ${MAKE} depend all install
109 cd ${.CURDIR}/share/man && ${MAKE} makedb
110
111reinstall: hierarchy mk includes

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

207#.endif
208
209mk:
210 @echo "--------------------------------------------------------------"
211 @echo " Rebuilding ${DESTDIR}/usr/share/mk"
212 @echo "--------------------------------------------------------------"
213 cd ${.CURDIR}/share/mk && ${MAKE} install
214
215includes: include-tools
215includes:
216 @echo "--------------------------------------------------------------"
217 @echo " Rebuilding ${DESTDIR}/usr/include"
218 @echo "--------------------------------------------------------------"
219 @echo
220.if defined(CLOBBER)
221 rm -rf ${DESTDIR}/usr/include/*
222 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
223 -p ${DESTDIR}/usr/include

--- 133 unchanged lines hidden ---
216 @echo "--------------------------------------------------------------"
217 @echo " Rebuilding ${DESTDIR}/usr/include"
218 @echo "--------------------------------------------------------------"
219 @echo
220.if defined(CLOBBER)
221 rm -rf ${DESTDIR}/usr/include/*
222 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
223 -p ${DESTDIR}/usr/include

--- 133 unchanged lines hidden ---