Deleted Added
full compact
Makefile (30277) Makefile (32427)
1#
1#
2# $Id: Makefile,v 1.154 1997/10/07 11:32:05 bde Exp $
2# $Id: Makefile,v 1.155 1997/10/10 13:02:36 asami Exp $
3#
3#
4# While porting to the Alpha architecture include the bootstrap instead
5# of the normal build.
6#
7.if ${MACHINE} == "alpha"
8.include "Makefile.alpha"
9.else
10#
4# Make command line options:
5# -DCLOBBER will remove /usr/include
6# -DMAKE_KERBEROS4 to build KerberosIV
7# -DALLLANG to build documentation for all languages
8# (where available -- see share/doc/Makefile)
9#
10# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
11# -DNOCLEAN do not clean at all

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

479 cd ${.CURDIR}/kerberosIV/lib/libkadm && ${MAKE} beforeinstall
480 cd ${.CURDIR}/kerberosIV/lib/libkafs && ${MAKE} beforeinstall
481 cd ${.CURDIR}/kerberosIV/lib/libkdb && ${MAKE} beforeinstall
482 cd ${.CURDIR}/kerberosIV/lib/libkrb && ${MAKE} beforeinstall
483 cd ${.CURDIR}/kerberosIV/lib/libtelnet && ${MAKE} beforeinstall
484.else
485 cd ${.CURDIR}/lib/libtelnet && ${MAKE} beforeinstall
486.endif
11# Make command line options:
12# -DCLOBBER will remove /usr/include
13# -DMAKE_KERBEROS4 to build KerberosIV
14# -DALLLANG to build documentation for all languages
15# (where available -- see share/doc/Makefile)
16#
17# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
18# -DNOCLEAN do not clean at all

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

486 cd ${.CURDIR}/kerberosIV/lib/libkadm && ${MAKE} beforeinstall
487 cd ${.CURDIR}/kerberosIV/lib/libkafs && ${MAKE} beforeinstall
488 cd ${.CURDIR}/kerberosIV/lib/libkdb && ${MAKE} beforeinstall
489 cd ${.CURDIR}/kerberosIV/lib/libkrb && ${MAKE} beforeinstall
490 cd ${.CURDIR}/kerberosIV/lib/libtelnet && ${MAKE} beforeinstall
491.else
492 cd ${.CURDIR}/lib/libtelnet && ${MAKE} beforeinstall
493.endif
487 cd ${.CURDIR}/lib/csu/i386 && ${MAKE} beforeinstall
494.if exists(${.CURDIR}/lib/csu/${MACHINE})
495 cd ${.CURDIR}/lib/csu/${MACHINE} && ${MAKE} beforeinstall
496.endif
488 cd ${.CURDIR}/lib/libalias && ${MAKE} beforeinstall
489 cd ${.CURDIR}/lib/libc && ${MAKE} beforeinstall
490 cd ${.CURDIR}/lib/libcurses && ${MAKE} beforeinstall
491 cd ${.CURDIR}/lib/libdisk && ${MAKE} beforeinstall
492 cd ${.CURDIR}/lib/libedit && ${MAKE} beforeinstall
493 cd ${.CURDIR}/lib/libftpio && ${MAKE} beforeinstall
494 cd ${.CURDIR}/lib/libmd && ${MAKE} beforeinstall
495 cd ${.CURDIR}/lib/libmytinfo && ${MAKE} beforeinstall

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

539 ${MAKE} ${MK_FLAGS} all && \
540 ${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
541.endfor
542
543#
544# libraries - build and install the libraries
545#
546libraries:
497 cd ${.CURDIR}/lib/libalias && ${MAKE} beforeinstall
498 cd ${.CURDIR}/lib/libc && ${MAKE} beforeinstall
499 cd ${.CURDIR}/lib/libcurses && ${MAKE} beforeinstall
500 cd ${.CURDIR}/lib/libdisk && ${MAKE} beforeinstall
501 cd ${.CURDIR}/lib/libedit && ${MAKE} beforeinstall
502 cd ${.CURDIR}/lib/libftpio && ${MAKE} beforeinstall
503 cd ${.CURDIR}/lib/libmd && ${MAKE} beforeinstall
504 cd ${.CURDIR}/lib/libmytinfo && ${MAKE} beforeinstall

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

548 ${MAKE} ${MK_FLAGS} all && \
549 ${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
550.endfor
551
552#
553# libraries - build and install the libraries
554#
555libraries:
547.if exists(lib/csu/i386)
548 cd ${.CURDIR}/lib/csu/i386 && ${MAKE} depend && \
556.if exists(lib/csu/${MACHINE})
557 cd ${.CURDIR}/lib/csu/${MACHINE} && ${MAKE} depend && \
549 ${MAKE} ${MK_FLAGS} all && \
550 ${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
551.endif
552.if exists(lib/libcompat)
553 cd ${.CURDIR}/lib/libcompat && ${MAKE} depend && \
554 ${MAKE} ${MK_FLAGS} all && \
555 ${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
556.endif

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

679 edir=${entry}; \
680 cd ${.CURDIR}/$${edir}; \
681 fi; \
682 ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
683.endfor
684par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
685.endfor
686
558 ${MAKE} ${MK_FLAGS} all && \
559 ${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
560.endif
561.if exists(lib/libcompat)
562 cd ${.CURDIR}/lib/libcompat && ${MAKE} depend && \
563 ${MAKE} ${MK_FLAGS} all && \
564 ${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
565.endif

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

688 edir=${entry}; \
689 cd ${.CURDIR}/$${edir}; \
690 fi; \
691 ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
692.endfor
693par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
694.endfor
695
696.endif
697
687.include <bsd.subdir.mk>
698.include <bsd.subdir.mk>