1994-06-14 04:40:29 +00:00
|
|
|
# $Id: Makefile,v 1.19 1994/06/14 04:40:29 cgd Exp $
|
1993-03-22 08:43:59 +00:00
|
|
|
|
|
|
|
# NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW
|
1993-03-21 18:04:42 +00:00
|
|
|
|
1993-12-08 04:51:25 +00:00
|
|
|
SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share games
|
1993-04-29 12:42:00 +00:00
|
|
|
SUBDIR+= gnu
|
1993-03-21 09:45:37 +00:00
|
|
|
|
1993-07-04 14:02:11 +00:00
|
|
|
SUBDIR+= sys
|
|
|
|
|
1993-07-07 12:55:48 +00:00
|
|
|
.if exists(regress)
|
1993-05-22 07:10:28 +00:00
|
|
|
.ifmake !(install)
|
|
|
|
SUBDIR+= regress
|
|
|
|
.endif
|
|
|
|
|
1993-05-22 07:15:13 +00:00
|
|
|
regression-tests:
|
|
|
|
@echo Running regression tests...
|
1994-02-10 08:50:06 +00:00
|
|
|
@(cd regress && ${MAKE} regress)
|
1993-07-07 12:55:48 +00:00
|
|
|
.endif
|
1993-05-22 07:10:28 +00:00
|
|
|
|
1994-02-07 05:08:57 +00:00
|
|
|
afterinstall:
|
1994-06-14 04:40:29 +00:00
|
|
|
.ifndef NOMAN
|
1994-02-10 01:47:47 +00:00
|
|
|
(cd share/man && ${MAKE} makedb)
|
1994-06-14 04:40:29 +00:00
|
|
|
.endif
|
1994-02-07 05:08:57 +00:00
|
|
|
|
|
|
|
build:
|
1994-02-10 01:47:47 +00:00
|
|
|
(cd include && ${MAKE} install)
|
|
|
|
${MAKE} cleandir
|
|
|
|
(cd lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)
|
|
|
|
(cd gnu/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)
|
1994-02-07 05:08:57 +00:00
|
|
|
.if exists(kerberosIV)
|
1994-02-10 01:47:47 +00:00
|
|
|
(cd kerberosIV && ${MAKE} depend && ${MAKE} && ${MAKE} install)
|
1994-02-07 05:08:57 +00:00
|
|
|
.endif
|
1994-02-10 01:47:47 +00:00
|
|
|
${MAKE} depend && ${MAKE} && ${MAKE} install
|
1994-02-07 05:08:57 +00:00
|
|
|
|
1993-03-21 09:45:37 +00:00
|
|
|
.include <bsd.subdir.mk>
|