Needed to move the .endif for the CLOBBER down a little lower so that
[unix-history] / Makefile
CommitLineData
15637ed4
RG
1# @(#)Makefile 5.1.1.2 (Berkeley) 5/9/91
2#
5262d901 3# $Id: Makefile,v 1.13 1993/09/13 21:33:02 rgrimes 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
25.if exists(libexec)
26SUBDIR+= libexec
27.endif
28.if exists(sbin)
29SUBDIR+= sbin
30.endif
31.if exists(share)
32SUBDIR+= share
33.endif
34.if exists(usr.bin)
35SUBDIR+= usr.bin
36.endif
37.if exists(usr.sbin)
38SUBDIR+= usr.sbin
39.endif
15637ed4 40
5db24604 41# Special cases: etc sys
2a351537 42# Not ported: kerberosIV
15637ed4 43
297c7883
RG
44#
45# setenv NOCLEANDIR will prevent make cleandirs from being run
46#
47.if defined(NOCLEANDIR)
48CLEANDIR=
49.else
50CLEANDIR= cleandir
51.endif
52
d18e4498 53world: directories cleandist mk includes libraries tools mdec
297c7883
RG
54 @echo "--------------------------------------------------------------"
55 @echo " Rebuilding ${DESTDIR} The whole thing"
56 @echo "--------------------------------------------------------------"
57 @echo
58 make depend all install
07962aad 59 cd ${.CURDIR}/usr.sbin/sendmail/src; make install
297c7883 60
d18e4498
RG
61directories:
62 cd ${.CURDIR}/etc; make distrib-dirs
63
297c7883
RG
64cleandist:
65.if !defined(NOCLEANDIR)
66 @echo "--------------------------------------------------------------"
67 @echo " Cleaning up the source tree, and rebuilding the obj tree"
68 @echo "--------------------------------------------------------------"
69 @echo
70 cd /usr/obj; rm -rf ${SUBDIR}
71 find . -name obj | xargs -n30 rm -rf
72 make cleandir
73 make obj
74.endif
75
76mk:
77 @echo "--------------------------------------------------------------"
78 @echo " Rebuilding ${DESTDIR}/usr/share/mk"
79 @echo "--------------------------------------------------------------"
80 # DONT DO THIS!! rm -rf ${DESTDIR}/usr/share/mk
81 # DONT DO THIS!! mkdir ${DESTDIR}/usr/share/mk
82 chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/share/mk
83 chmod 755 ${DESTDIR}/usr/share/mk
07962aad 84 cd ${.CURDIR}/share/mk; make install;
297c7883
RG
85
86includes:
297c7883
RG
87 @echo "--------------------------------------------------------------"
88 @echo " Rebuilding ${DESTDIR}/usr/include"
89 @echo "--------------------------------------------------------------"
90 @echo
7b26216f 91.if defined(CLOBBER)
297c7883
RG
92 rm -rf ${DESTDIR}/usr/include
93 mkdir ${DESTDIR}/usr/include
94 chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include
95 chmod 755 ${DESTDIR}/usr/include
5262d901 96.endif
07962aad
NW
97 cd ${.CURDIR}/include; make install
98 cd ${.CURDIR}/gnu/libg++; make beforeinstall
0691ff99 99 cd ${.CURDIR}/gnu/libregex; make beforeinstall
07962aad
NW
100 cd ${.CURDIR}/lib/libcurses; make beforeinstall
101 cd ${.CURDIR}/lib/librpc/rpc; make beforeinstall
297c7883
RG
102
103libraries:
104 # setenv NOPROFILED if you do not want profiled libraries
105 @echo "--------------------------------------------------------------"
106 @echo " Rebuilding ${DESTDIR}/usr/lib"
107 @echo "--------------------------------------------------------------"
108 @echo
7b26216f 109.if defined(CLOBBER)
297c7883
RG
110 rm -rf ${DESTDIR}/usr/lib
111 mkdir ${DESTDIR}/usr/lib
112 chown -R bin.bin ${DESTDIR}/usr/lib
113 chmod 755 ${DESTDIR}/usr/lib
5262d901 114.endif
07962aad
NW
115 cd ${.CURDIR}/lib; make depend all install ${CLEANDIR} obj
116 cd ${.CURDIR}/gnu/gcc2/libgcc; make depend all install ${CLEANDIR} obj
117 cd ${.CURDIR}/usr.bin/lex; make depend all install ${CLEANDIR} obj
118 cd ${.CURDIR}/gnu/libregex; make depend all install ${CLEANDIR} obj
297c7883
RG
119
120tools:
121 @echo "--------------------------------------------------------------"
122 @echo " Rebuilding ${DESTDIR} Compiler and Make"
123 @echo "--------------------------------------------------------------"
124 @echo
07962aad
NW
125 cd ${.CURDIR}/gnu/gcc2; make depend all install ${CLEANDIR} obj
126 cd ${.CURDIR}/usr.bin/make; make depend all install ${CLEANDIR} obj
297c7883
RG
127
128mdec:
129 @echo "--------------------------------------------------------------"
130 @echo " Rebuilding ${DESTDIR}/usr/mdec"
131 @echo "--------------------------------------------------------------"
132 @echo
133.if ${MACHINE} == "i386"
07962aad 134 cd ${.CURDIR}/sys/i386/boot; make depend all install ${CLEANDIR}
297c7883
RG
135.if defined (DESTDIR)
136 cd /usr/mdec; find . | cpio -pdamuv ${DESTDIR}/usr/mdec
137.endif
138.endif
139
15637ed4 140.include <bsd.subdir.mk>