Deleted Added
full compact
Makefile.inc1 (115141) Makefile.inc1 (115157)
1#
1#
2# $FreeBSD: head/Makefile.inc1 115141 2003-05-18 20:22:26Z ru $
2# $FreeBSD: head/Makefile.inc1 115157 2003-05-19 15:52:01Z des $
3#
4# Make command line options:
5# -DNO_KERBEROS Do not build Heimdal (Kerberos 5)
6# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
7# -DNOCLEAN do not clean at all
8# -DNOCRYPT will prevent building of crypt versions
9# -DNOMAN do not build the manual pages
10# -DNOPROFILE do not build profiled libraries
3#
4# Make command line options:
5# -DNO_KERBEROS Do not build Heimdal (Kerberos 5)
6# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
7# -DNOCLEAN do not clean at all
8# -DNOCRYPT will prevent building of crypt versions
9# -DNOMAN do not build the manual pages
10# -DNOPROFILE do not build profiled libraries
11# -DNOSECURE do not go into secure subdir
12# -DNOGAMES do not go into games subdir
13# -DNOSHARE do not go into share subdir
14# -DNOINFO do not make or install info files
15# -DNOLIBC_R do not build libc_r.
16# -DNO_FORTRAN do not build g77 and related libraries.
17# -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
18# -DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
19# -DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel

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

65SUBDIR+= kerberos5
66.endif
67.if exists(${.CURDIR}/libexec)
68SUBDIR+= libexec
69.endif
70.if exists(${.CURDIR}/sbin)
71SUBDIR+= sbin
72.endif
11# -DNOGAMES do not go into games subdir
12# -DNOSHARE do not go into share subdir
13# -DNOINFO do not make or install info files
14# -DNOLIBC_R do not build libc_r.
15# -DNO_FORTRAN do not build g77 and related libraries.
16# -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
17# -DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
18# -DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel

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

64SUBDIR+= kerberos5
65.endif
66.if exists(${.CURDIR}/libexec)
67SUBDIR+= libexec
68.endif
69.if exists(${.CURDIR}/sbin)
70SUBDIR+= sbin
71.endif
73.if exists(${.CURDIR}/secure) && !defined(NOCRYPT) && !defined(NOSECURE)
72.if exists(${.CURDIR}/secure) && !defined(NOCRYPT)
74SUBDIR+= secure
75.endif
76.if exists(${.CURDIR}/share) && !defined(NOSHARE)
77SUBDIR+= share
78.endif
79.if exists(${.CURDIR}/sys)
80SUBDIR+= sys
81.endif

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

798 lib/libsbuf lib/libtacplus lib/libutil lib/libypclnt \
799 lib/libz lib/msun
800
801lib/libopie__L lib/libradius__L lib/libtacplus__L: lib/libmd__L
802lib/libypclnt__L: lib/librpcsvc__L
803
804_generic_libs+= lib
805
73SUBDIR+= secure
74.endif
75.if exists(${.CURDIR}/share) && !defined(NOSHARE)
76SUBDIR+= share
77.endif
78.if exists(${.CURDIR}/sys)
79SUBDIR+= sys
80.endif

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

797 lib/libsbuf lib/libtacplus lib/libutil lib/libypclnt \
798 lib/libz lib/msun
799
800lib/libopie__L lib/libradius__L lib/libtacplus__L: lib/libmd__L
801lib/libypclnt__L: lib/librpcsvc__L
802
803_generic_libs+= lib
804
806.if !defined(NOCRYPT) && !defined(NOSECURE)
805.if !defined(NOCRYPT)
807.if !defined(NO_OPENSSL)
808_prebuild_libs+= secure/lib/libcrypto secure/lib/libssl
809.if !defined(NO_OPENSSH)
810_prebuild_libs+= secure/lib/libssh
811secure/lib/libssh__L: secure/lib/libcrypto__L lib/libz__L
812.endif
813.endif
814_generic_libs+= secure/lib

--- 51 unchanged lines hidden ---
806.if !defined(NO_OPENSSL)
807_prebuild_libs+= secure/lib/libcrypto secure/lib/libssl
808.if !defined(NO_OPENSSH)
809_prebuild_libs+= secure/lib/libssh
810secure/lib/libssh__L: secure/lib/libcrypto__L lib/libz__L
811.endif
812.endif
813_generic_libs+= secure/lib

--- 51 unchanged lines hidden ---