This commit was manufactured by cvs2svn to create tag 'FreeBSD-
[unix-history] / Makefile
CommitLineData
15637ed4
RG
1# @(#)Makefile 5.1.1.2 (Berkeley) 5/9/91
2#
70facbce 3# $Id: Makefile,v 1.54 1994/06/15 20:21:00 adam Exp $
15637ed4
RG
4#
5
f3babd4b
RG
6SUBDIR=
7.if exists(bin)
8SUBDIR+= bin
9.endif
10.if exists(contrib)
11SUBDIR+= contrib
12.endif
13.if exists(games)
14SUBDIR+= games
15.endif
16.if exists(gnu)
17SUBDIR+= gnu
18.endif
19.if exists(include)
20SUBDIR+= include
21.endif
22.if exists(lib)
23SUBDIR+= lib
24.endif
017f3f1a
GW
25
26# This contains both libraries and includes, which stuff below depends
27# upon.
28.if exists(kerberosIV) && !defined(NOCRYPT)
29SUBDIR+= kerberosIV
30.endif
31
f3babd4b
RG
32.if exists(libexec)
33SUBDIR+= libexec
34.endif
35.if exists(sbin)
36SUBDIR+= sbin
37.endif
38.if exists(share)
39SUBDIR+= share
40.endif
41.if exists(usr.bin)
42SUBDIR+= usr.bin
43.endif
44.if exists(usr.sbin)
45SUBDIR+= usr.sbin
46.endif
15637ed4 47
b761caf7
RG
48# This is for people who want to have src/ports, src/local built
49# automatically.
50.if defined(MAKE_LOCAL) & exists(local) & exists(local/Makefile)
51SUBDIR+= local
52.endif
53.if defined(MAKE_PORTS) & exists(ports) & exists(ports/Makefile)
54SUBDIR+= ports
55.endif
56
57
5db24604 58# Special cases: etc sys
2a351537 59# Not ported: kerberosIV
15637ed4 60
297c7883
RG
61#
62# setenv NOCLEANDIR will prevent make cleandirs from being run
63#
64.if defined(NOCLEANDIR)
65CLEANDIR=
66.else
67CLEANDIR= cleandir
68.endif
69
732bb7de 70# Where is the c-compiler source. Change this, and gnu/usr.bin/Makefile if you
cf58d770
PHK
71# want to use another cc (gcc-2.5.8 for instance)
72CCDIR= ${.CURDIR}/gnu/usr.bin/cc
73#CCDIR= ${.CURDIR}/gnu/usr.bin/cc25
74
b0f33593 75world: directories cleandist mk includes libraries tools mdec
297c7883
RG
76 @echo "--------------------------------------------------------------"
77 @echo " Rebuilding ${DESTDIR} The whole thing"
78 @echo "--------------------------------------------------------------"
79 @echo
80 make depend all install
986c93cf 81 cd ${.CURDIR}/share/man; make makedb
297c7883 82
d18e4498 83directories:
e81816d6
JH
84 @echo "--------------------------------------------------------------"
85 @echo " Making directories"
86 @echo "--------------------------------------------------------------"
d18e4498
RG
87 cd ${.CURDIR}/etc; make distrib-dirs
88
297c7883
RG
89cleandist:
90.if !defined(NOCLEANDIR)
91 @echo "--------------------------------------------------------------"
92 @echo " Cleaning up the source tree, and rebuilding the obj tree"
93 @echo "--------------------------------------------------------------"
94 @echo
b4e56ca8 95 here=`pwd`; dest=/usr/obj`echo $$here | sed 's,^/usr/src,,'`; \
433e5f2d
RG
96 if test -d /usr/obj -a ! -d $$dest; then \
97 mkdir -p $$dest; \
98 else \
99 true; \
fe98695b 100 fi; \
6929557a 101 cd $$dest; rm -rf ${SUBDIR}
297c7883 102 find . -name obj | xargs -n30 rm -rf
e7301710
RG
103.if defined(MAKE_LOCAL) & exists(local) & exists(local/Makefile)
104 # The cd is done as local may well be a symbolic link
105 -cd local ; find . -name obj | xargs -n30 rm -rf
106.endif
107.if defined(MAKE_PORTS) & exists(ports) & exists(ports/Makefile)
108 # The cd is done as local may well be a symbolic link
109 -cd ports ; find . -name obj | xargs -n30 rm -rf
110.endif
297c7883
RG
111 make cleandir
112 make obj
113.endif
114
115mk:
116 @echo "--------------------------------------------------------------"
117 @echo " Rebuilding ${DESTDIR}/usr/share/mk"
118 @echo "--------------------------------------------------------------"
b0f33593 119.if defined(CLOBBER)
297c7883
RG
120 # DONT DO THIS!! rm -rf ${DESTDIR}/usr/share/mk
121 # DONT DO THIS!! mkdir ${DESTDIR}/usr/share/mk
b0f33593
RG
122 # DONT DO THIS!! chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/share/mk
123 # DONT DO THIS!! chmod 755 ${DESTDIR}/usr/share/mk
124.endif
a4c165dd 125 cd ${.CURDIR}/share/mk; make clean all install;
297c7883
RG
126
127includes:
297c7883
RG
128 @echo "--------------------------------------------------------------"
129 @echo " Rebuilding ${DESTDIR}/usr/include"
130 @echo "--------------------------------------------------------------"
131 @echo
7b26216f 132.if defined(CLOBBER)
297c7883
RG
133 rm -rf ${DESTDIR}/usr/include
134 mkdir ${DESTDIR}/usr/include
135 chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include
136 chmod 755 ${DESTDIR}/usr/include
5262d901 137.endif
a4c165dd 138 cd ${.CURDIR}/include; make clean all install
cf58d770 139 cd ${CCDIR}/libobjc; make beforeinstall
ea6ba301 140 cd ${.CURDIR}/gnu/lib/libg++; make beforeinstall
b465f60d 141 cd ${.CURDIR}/gnu/lib/libreadline; make beforeinstall
07962aad 142 cd ${.CURDIR}/lib/libcurses; make beforeinstall
2e609b9d 143 cd ${.CURDIR}/lib/libc; make beforeinstall
017f3f1a 144.if !defined(NOCRYPT) && exists(${.CURDIR}/kerberosIV)
a4c165dd 145 cd ${.CURDIR}/kerberosIV/include; make clean all install
017f3f1a 146.endif
297c7883 147
b0f33593
RG
148# You MUST run this the first time you get the new sources to boot strap
149# the shared library tools onto you system. This target should only
150# need to be run once on a system.
ce6b8665 151
b0f33593 152bootstrapld: directories cleandist mk includes
ce6b8665
PR
153 @echo "--------------------------------------------------------------"
154 @echo " Building new shlib compiler tools"
155 @echo "--------------------------------------------------------------"
8f2552dc
NW
156 # These tools need to be built very early due to a.out.h changes:
157 # It is possible that ar is needed
b0f33593
RG
158 cd ${.CURDIR}/usr.bin/mkdep; make -DNOPIC depend all install ${CLEANDIR} obj
159 cd ${.CURDIR}/usr.bin/nm; make -DNOPIC depend all install ${CLEANDIR} obj
160 cd ${.CURDIR}/usr.bin/ranlib; make -DNOPIC depend all install ${CLEANDIR} obj
161 cd ${.CURDIR}/usr.bin/strip; make -DNOPIC depend all install ${CLEANDIR} obj
1997d48b
RG
162 cd ${.CURDIR}/gnu/usr.bin/ld; make -DNOPIC depend all install ${CLEANDIR} obj
163 cd ${.CURDIR}/gnu/usr.bin/as; make depend all install ${CLEANDIR} obj
cf58d770
PHK
164 cd ${CCDIR}; make -DNOPIC depend all install ${CLEANDIR} obj
165 cd ${CCDIR}/libgcc; make all install ${CLEANDIR} obj
b0f33593
RG
166 cd ${.CURDIR}/lib/csu.i386; make depend all install ${CLEANDIR} obj
167 cd ${.CURDIR}/lib/libc; make depend all install ${CLEANDIR} obj
1997d48b 168 cd ${.CURDIR}/gnu/usr.bin/ld/rtld; make depend all install ${CLEANDIR} obj
ce6b8665 169
d259a2c9
AC
170# Standard database make routines are slow especially for big passwd files.
171# Moreover, *pwd.db bases are too big and waste root space. You can have
172# much faster routines with small *pwd.db, but loose binary compatibility
173# with previous versions and with other BSD-like systems. If you want to
174# setup much faster routines, define envirnoment variable (f.e. 'setenv
175# PW_COMPACT' in csh) and use target into /usr/src/Makefile. If you will
176# want to return this changes back, use the same target without defining
177# PW_COMPACT.
5b55ca67 178
9d92c587 179bootstrappwd: #directories
2fa008e0 180 -rm -f ${.CURDIR}/lib/libc/obj/getpwent.o ${.CURDIR}/lib/libc/getpwent.o
5b55ca67 181 cd ${.CURDIR}/lib/libc; make all
2fa008e0 182 -rm -f ${.CURDIR}/usr.sbin/pwd_mkdb/obj/pwd_mkdb.o ${.CURDIR}/usr.sbin/pwd_mkdb/pwd_mkdb.o
5b55ca67
AC
183 cd ${.CURDIR}/usr.sbin/pwd_mkdb; make all install ${CLEANDIR}
184 cp /etc/master.passwd /etc/mp.t; pwd_mkdb /etc/mp.t
9d92c587
AC
185 SLIB=`basename ${.CURDIR}/lib/libc/obj/libc.so.*`; \
186 cp ${.CURDIR}/lib/libc/obj/$$SLIB /usr/lib/$$SLIB.tmp; \
187 mv /usr/lib/$$SLIB.tmp /usr/lib/$$SLIB
d744c517 188 cd ${.CURDIR}/lib/libc; make install ${CLEANDIR}
9d92c587
AC
189 cd ${.CURDIR}/usr.bin/passwd; make clean all install ${CLEANDIR}
190 cd ${.CURDIR}/usr.bin/chpass; make clean all install ${CLEANDIR}
2fa008e0
AC
191 cd ${.CURDIR}/bin; make clean all install ${CLEANDIR}
192 cd ${.CURDIR}/sbin; make clean all install ${CLEANDIR}
5b55ca67 193 @echo "--------------------------------------------------------------"
4a85eb03 194 @echo " Do a reboot now because all daemons need restarting"
5b55ca67
AC
195 @echo "--------------------------------------------------------------"
196
297c7883 197libraries:
042909b6 198 # setenv NOPROFILE if you do not want profiled libraries
297c7883
RG
199 @echo "--------------------------------------------------------------"
200 @echo " Rebuilding ${DESTDIR}/usr/lib"
201 @echo "--------------------------------------------------------------"
202 @echo
7b26216f 203.if defined(CLOBBER)
9f3e1e65 204 find ${DESTDIR}/usr/lib \! -name '*.s[ao].*' -a \! -type d | xargs -n30 rm -rf
5262d901 205.endif
1997d48b 206 cd ${.CURDIR}/lib; make depend all install ${CLEANDIR} obj
cf58d770 207 cd ${CCDIR}/libgcc; make depend all install ${CLEANDIR} obj
1997d48b
RG
208 cd ${.CURDIR}/gnu/lib/libg++; make depend all install ${CLEANDIR} obj
209 cd ${.CURDIR}/gnu/lib/libregex; make depend all install ${CLEANDIR} obj
210 cd ${.CURDIR}/gnu/lib/libmalloc; make depend all install ${CLEANDIR} obj
42bd4104 211 cd ${.CURDIR}/gnu/lib/libreadline; make depend all install ${CLEANDIR} obj
fb69d766 212 cd ${.CURDIR}/usr.bin/lex; make depend all install ${CLEANDIR} obj
017f3f1a
GW
213.if exists(${.CURDIR}/kerberosIV) && !defined(NOCRYPT)
214 cd ${.CURDIR}/kerberosIV/des; make depend all install ${CLEANDIR} obj
215 cd ${.CURDIR}/kerberosIV/krb; make depend all install ${CLEANDIR} obj
cf58d770 216 cd ${.CURDIR}/kerberosIV/kdb; make depend all install ${CLEANDIR} obj
017f3f1a 217.endif
297c7883
RG
218
219tools:
220 @echo "--------------------------------------------------------------"
221 @echo " Rebuilding ${DESTDIR} Compiler and Make"
222 @echo "--------------------------------------------------------------"
223 @echo
cf58d770 224 cd ${CCDIR}; make depend all install ${CLEANDIR} obj
b0f33593 225 cd ${.CURDIR}/usr.bin/make; make depend all install ${CLEANDIR} obj
297c7883
RG
226
227mdec:
228 @echo "--------------------------------------------------------------"
229 @echo " Rebuilding ${DESTDIR}/usr/mdec"
230 @echo "--------------------------------------------------------------"
231 @echo
232.if ${MACHINE} == "i386"
70facbce 233 cd ${.CURDIR}/sys/i386/boot; make depend all install ${CLEANDIR}
297c7883
RG
234.if defined (DESTDIR)
235 cd /usr/mdec; find . | cpio -pdamuv ${DESTDIR}/usr/mdec
236.endif
237.endif
238
15637ed4 239.include <bsd.subdir.mk>