Deleted Added
full compact
Makefile (7108) Makefile (7130)
1#
1#
2# $Id: Makefile,v 1.44 1995/03/14 21:32:46 roberto Exp $
2# $Id: Makefile,v 1.45 1995/03/17 04:59:44 phk 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

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

190 cd ${.CURDIR}/share/mk && ${MAKE} install
191
192includes:
193 @echo "--------------------------------------------------------------"
194 @echo " Rebuilding ${DESTDIR}/usr/include"
195 @echo "--------------------------------------------------------------"
196 @echo
197.if defined(CLOBBER)
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

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

190 cd ${.CURDIR}/share/mk && ${MAKE} install
191
192includes:
193 @echo "--------------------------------------------------------------"
194 @echo " Rebuilding ${DESTDIR}/usr/include"
195 @echo "--------------------------------------------------------------"
196 @echo
197.if defined(CLOBBER)
198 rm -rf ${DESTDIR}/usr/include
199 mkdir ${DESTDIR}/usr/include
200 chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include
201 chmod 755 ${DESTDIR}/usr/include
198 rm -rf ${DESTDIR}/usr/include/*
199 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
200 -p ${DESTDIR}/usr/include
202.endif
203 cd ${.CURDIR}/include && ${MAKE} install
204 cd ${.CURDIR}/gnu/include && ${MAKE} install
205 cd ${.CURDIR}/gnu/lib/libreadline && ${MAKE} beforeinstall
206 cd ${.CURDIR}/gnu/lib/libregex && ${MAKE} beforeinstall
207 cd ${.CURDIR}/gnu/lib/libg++ && ${MAKE} beforeinstall
208 cd ${.CURDIR}/gnu/lib/libdialog && ${MAKE} beforeinstall
209.if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)

--- 85 unchanged lines hidden ---
201.endif
202 cd ${.CURDIR}/include && ${MAKE} install
203 cd ${.CURDIR}/gnu/include && ${MAKE} install
204 cd ${.CURDIR}/gnu/lib/libreadline && ${MAKE} beforeinstall
205 cd ${.CURDIR}/gnu/lib/libregex && ${MAKE} beforeinstall
206 cd ${.CURDIR}/gnu/lib/libg++ && ${MAKE} beforeinstall
207 cd ${.CURDIR}/gnu/lib/libdialog && ${MAKE} beforeinstall
208.if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)

--- 85 unchanged lines hidden ---