Deleted Added
full compact
Makefile (8489) Makefile (8854)
1#
1#
2# $Id: Makefile,v 1.55 1995/05/06 03:59:58 rgrimes Exp $
2# $Id: Makefile,v 1.56 1995/05/13 03:34:23 rgrimes Exp $
3#
4# Make command line options:
3#
4# Make command line options:
5# -DCLOBBER will remove /usr/include and MOST of /usr/lib
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
11# -DNOCRYPT will prevent building of crypt versions
12# -DNOLKM do not build loadable kernel modules
13# -DNOOBJDIR do not run ``${MAKE} obj''

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

83# Handle the -DNOOBJDIR and -DNOCLEANDIR
84.if defined(NOOBJDIR)
85OBJDIR=
86.else
87OBJDIR= obj
88.endif
89.if defined(NOCLEANDIR)
90CLEANDIR= clean
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
11# -DNOCRYPT will prevent building of crypt versions
12# -DNOLKM do not build loadable kernel modules
13# -DNOOBJDIR do not run ``${MAKE} obj''

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

83# Handle the -DNOOBJDIR and -DNOCLEANDIR
84.if defined(NOOBJDIR)
85OBJDIR=
86.else
87OBJDIR= obj
88.endif
89.if defined(NOCLEANDIR)
90CLEANDIR= clean
91.else
91.else
92CLEANDIR= cleandir
93.endif
94
95world: hierarchy mk cleandist includes lib-tools libraries tools
96 @echo "--------------------------------------------------------------"
97 @echo " Rebuilding ${DESTDIR} The whole thing"
98 @echo "--------------------------------------------------------------"
99 @echo

--- 217 unchanged lines hidden ---
92CLEANDIR= cleandir
93.endif
94
95world: hierarchy mk cleandist includes lib-tools libraries tools
96 @echo "--------------------------------------------------------------"
97 @echo " Rebuilding ${DESTDIR} The whole thing"
98 @echo "--------------------------------------------------------------"
99 @echo

--- 217 unchanged lines hidden ---