Deleted Added
full compact
Makefile (3518) Makefile (3626)
1#
1#
2# $Id: Makefile,v 1.25 1994/10/08 15:08:14 ache Exp $
2# $Id: Makefile,v 1.26 1994/10/11 23:33:00 ache 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# XXX1 -DMAKE_KERBEROS to build KerberosIV
9# -DMAKE_EBONES to build eBones (KerberosIV)
10#

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

147.if defined(MAKE_PORTS) & exists(ports) & exists(ports/Makefile)
148 # The cd is done as local may well be a symbolic link
149 -cd ports && find . -name obj | xargs rm -rf
150.endif
151 ${MAKE} cleandir
152 ${MAKE} obj
153.endif
154
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# XXX1 -DMAKE_KERBEROS to build KerberosIV
9# -DMAKE_EBONES to build eBones (KerberosIV)
10#

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

147.if defined(MAKE_PORTS) & exists(ports) & exists(ports/Makefile)
148 # The cd is done as local may well be a symbolic link
149 -cd ports && find . -name obj | xargs rm -rf
150.endif
151 ${MAKE} cleandir
152 ${MAKE} obj
153.endif
154
155installmost:
156 @echo "--------------------------------------------------------------"
157 @echo " Installing programs only"
158 @echo "--------------------------------------------------------------"
159 cd ${.CURDIR}/bin && ${MAKE} ${.MAKEFLAGS} install
160 cd ${.CURDIR}/sbin && ${MAKE} ${.MAKEFLAGS} install
161 cd ${.CURDIR}/libexec && ${MAKE} ${.MAKEFLAGS} install
162 cd ${.CURDIR}/usr.bin && ${MAKE} ${.MAKEFLAGS} install
163 cd ${.CURDIR}/usr.sbin && ${MAKE} ${.MAKEFLAGS} install
164 cd ${.CURDIR}/gnu/libexec && ${MAKE} ${.MAKEFLAGS} install
165 cd ${.CURDIR}/gnu/usr.bin && ${MAKE} ${.MAKEFLAGS} install
166#.if defined(MAKE_EBONES) && !defined(NOCRYPT)
167# cd ${.CURDIR}/eBones && ${MAKE} ${.MAKEFLAGS} installmost
168#.endif
169#.if !defined(NOSECURE) && !defined(NOCRYPT)
170# cd ${.CURDIR}/secure && ${MAKE} ${.MAKEFLAGS} installmost
171#.endif
172
173most:
174 @echo "--------------------------------------------------------------"
175 @echo " Building programs only"
176 @echo "--------------------------------------------------------------"
177 cd ${.CURDIR}/bin && ${MAKE} ${.MAKEFLAGS} all
178 cd ${.CURDIR}/sbin && ${MAKE} ${.MAKEFLAGS} all
179 cd ${.CURDIR}/libexec && ${MAKE} ${.MAKEFLAGS} all
180 cd ${.CURDIR}/usr.bin && ${MAKE} ${.MAKEFLAGS} all
181 cd ${.CURDIR}/usr.sbin && ${MAKE} ${.MAKEFLAGS} all
182 cd ${.CURDIR}/gnu/libexec && ${MAKE} ${.MAKEFLAGS} all
183 cd ${.CURDIR}/gnu/usr.bin && ${MAKE} ${.MAKEFLAGS} all
184#.if defined(MAKE_EBONES) && !defined(NOCRYPT)
185# cd ${.CURDIR}/eBones && ${MAKE} ${.MAKEFLAGS} most
186#.endif
187#.if !defined(NOSECURE) && !defined(NOCRYPT)
188# cd ${.CURDIR}/secure && ${MAKE} ${.MAKEFLAGS} most
189#.endif
190
155mk:
156 @echo "--------------------------------------------------------------"
157 @echo " Rebuilding ${DESTDIR}/usr/share/mk"
158 @echo "--------------------------------------------------------------"
159 cd ${.CURDIR}/share/mk && ${MAKE} install
160
161includes:
162 @echo "--------------------------------------------------------------"

--- 86 unchanged lines hidden ---
191mk:
192 @echo "--------------------------------------------------------------"
193 @echo " Rebuilding ${DESTDIR}/usr/share/mk"
194 @echo "--------------------------------------------------------------"
195 cd ${.CURDIR}/share/mk && ${MAKE} install
196
197includes:
198 @echo "--------------------------------------------------------------"

--- 86 unchanged lines hidden ---