Deleted Added
full compact
Makefile (7292) Makefile (7407)
1#
1#
2# $Id: Makefile,v 1.49 1995/03/23 19:03:02 rgrimes Exp $
2# $Id: Makefile,v 1.50 1995/03/23 23:40:29 rgrimes 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
11# -DNOCRYPT will prevent building of crypt versions
12# -DNOLKM do not build loadable kernel modules
13# -DNOOBJDIR do not run ``${MAKE} obj''
14# -DNOPROFILE do not build profiled libraries
15# -DNOSECURE do not go into secure subdir
16
17# Put initial settings here.
18SUBDIR=
19
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
11# -DNOCRYPT will prevent building of crypt versions
12# -DNOLKM do not build loadable kernel modules
13# -DNOOBJDIR do not run ``${MAKE} obj''
14# -DNOPROFILE do not build profiled libraries
15# -DNOSECURE do not go into secure subdir
16
17# Put initial settings here.
18SUBDIR=
19
20# do include first.
20# We must do include and lib first so that the perl *.ph generation
21# works correctly as it uses the header files installed by this.
21.if exists(include)
22SUBDIR+= include
23.endif
22.if exists(include)
23SUBDIR+= include
24.endif
25.if exists(lib)
26SUBDIR+= lib
27.endif
24
25.if exists(bin)
26SUBDIR+= bin
27.endif
28.if exists(contrib)
29SUBDIR+= contrib
30.endif
31.if exists(games)
32SUBDIR+= games
33.endif
34.if exists(gnu)
35SUBDIR+= gnu
36.endif
28
29.if exists(bin)
30SUBDIR+= bin
31.endif
32.if exists(contrib)
33SUBDIR+= contrib
34.endif
35.if exists(games)
36SUBDIR+= games
37.endif
38.if exists(gnu)
39SUBDIR+= gnu
40.endif
37.if exists(lib)
38SUBDIR+= lib
39.endif
40.if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)
41SUBDIR+= eBones
42.endif
43.if exists(libexec)
44SUBDIR+= libexec
45.endif
46.if exists(sbin)
47SUBDIR+= sbin

--- 249 unchanged lines hidden ---
41.if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)
42SUBDIR+= eBones
43.endif
44.if exists(libexec)
45SUBDIR+= libexec
46.endif
47.if exists(sbin)
48SUBDIR+= sbin

--- 249 unchanged lines hidden ---