1999-01-24 22:18:54 +03:00
|
|
|
# $NetBSD: Makefile,v 1.80 1999/01/24 19:18:54 scottr Exp $
|
1996-04-13 10:36:15 +04:00
|
|
|
|
|
|
|
.include <bsd.own.mk> # for configuration variables.
|
1993-03-22 11:43:59 +03:00
|
|
|
|
1998-12-22 14:21:09 +03:00
|
|
|
# Configurations variables (can be set either in /etc/mk.conf or
|
|
|
|
# as environement variable
|
|
|
|
# NBUILDJOBS: the number of jobs to start in parallel in a 'make build'.
|
|
|
|
# defaults to 1
|
|
|
|
# NOMAN: if set to 1, don't build and install man pages
|
|
|
|
# NOSHARE: if set to 1, don't build or install /usr/share stuffs
|
|
|
|
# UPDATE: if set to 1, don't do a 'make cleandir' before compile
|
|
|
|
# DESTDIR: The target directory for installation (default to '/',
|
|
|
|
# which mean the current system is updated).
|
|
|
|
|
1998-07-24 20:48:47 +04:00
|
|
|
HAVE_GCC28!= ${CXX} --version | egrep "^(2\.8|egcs)" ; echo
|
|
|
|
|
1998-12-22 14:21:09 +03:00
|
|
|
.if defined(NBUILDJOBS)
|
|
|
|
_J= -j${NBUILDJOBS}
|
|
|
|
.endif
|
|
|
|
|
1993-03-22 11:43:59 +03:00
|
|
|
# NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1998-05-10 14:37:59 +04:00
|
|
|
SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share sys
|
1996-08-11 03:29:00 +04:00
|
|
|
|
|
|
|
.if exists(games)
|
|
|
|
SUBDIR+= games
|
|
|
|
.endif
|
|
|
|
|
1993-04-29 16:42:00 +04:00
|
|
|
SUBDIR+= gnu
|
1998-05-10 14:37:59 +04:00
|
|
|
# This is needed for libstdc++ and gen-params.
|
|
|
|
includes-gnu: includes-include includes-sys
|
1993-07-04 18:02:11 +04:00
|
|
|
|
1999-01-24 10:42:34 +03:00
|
|
|
# This little mess makes the includes and install targets
|
|
|
|
# do the expected thing.
|
|
|
|
.if exists(domestic) && \
|
|
|
|
(make(clean) || make(cleandir) || make(obj) || \
|
1999-01-24 22:18:54 +03:00
|
|
|
(!defined(_BUILD) && (make(includes) || make(install))))
|
1995-02-19 15:20:06 +03:00
|
|
|
SUBDIR+= domestic
|
|
|
|
.endif
|
|
|
|
|
1993-07-07 16:55:48 +04:00
|
|
|
.if exists(regress)
|
1993-05-22 11:10:28 +04:00
|
|
|
.ifmake !(install)
|
|
|
|
SUBDIR+= regress
|
|
|
|
.endif
|
|
|
|
|
1993-05-22 11:15:13 +04:00
|
|
|
regression-tests:
|
|
|
|
@echo Running regression tests...
|
1995-02-26 04:10:19 +03:00
|
|
|
@(cd ${.CURDIR}/regress && ${MAKE} regress)
|
1993-07-07 16:55:48 +04:00
|
|
|
.endif
|
1993-05-22 11:10:28 +04:00
|
|
|
|
1995-12-10 01:39:46 +03:00
|
|
|
beforeinstall:
|
1998-02-07 02:11:57 +03:00
|
|
|
.ifmake build
|
|
|
|
@echo -n "Build started at: "
|
|
|
|
@date
|
|
|
|
.endif
|
1995-12-10 01:39:46 +03:00
|
|
|
.ifndef DESTDIR
|
|
|
|
(cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
|
1996-03-18 12:55:25 +03:00
|
|
|
.else
|
|
|
|
(cd ${.CURDIR}/etc && ${MAKE} distrib-dirs)
|
1995-12-10 01:39:46 +03:00
|
|
|
.endif
|
1995-10-06 15:05:36 +03:00
|
|
|
|
1994-02-07 08:08:57 +03:00
|
|
|
afterinstall:
|
1998-09-29 10:59:53 +04:00
|
|
|
.if !defined(NOMAN) && !defined(NOSHARE)
|
1995-02-26 04:10:19 +03:00
|
|
|
(cd ${.CURDIR}/share/man && ${MAKE} makedb)
|
1994-06-14 08:40:29 +04:00
|
|
|
.endif
|
1994-02-07 08:08:57 +03:00
|
|
|
|
1997-10-27 21:06:39 +03:00
|
|
|
build: beforeinstall
|
1998-09-29 10:59:53 +04:00
|
|
|
.if !defined(NOSHARE)
|
1996-04-13 10:36:15 +04:00
|
|
|
(cd ${.CURDIR}/share/mk && ${MAKE} install)
|
1998-02-15 03:33:03 +03:00
|
|
|
(cd ${.CURDIR}/share/tmac && ${MAKE} && ${MAKE} install)
|
1998-09-29 10:59:53 +04:00
|
|
|
.endif
|
1997-03-25 01:22:15 +03:00
|
|
|
.if !defined(UPDATE)
|
1994-02-10 04:47:47 +03:00
|
|
|
${MAKE} cleandir
|
1998-10-16 09:05:09 +04:00
|
|
|
.endif
|
1998-12-13 02:44:22 +03:00
|
|
|
.if empty(HAVE_GCC28)
|
1998-10-16 09:05:09 +04:00
|
|
|
.if defined(DESTDIR)
|
|
|
|
@echo "*** CAPUTE!"
|
|
|
|
@echo " You attempted to compile the world with egcs. You must"
|
|
|
|
@echo " first install a native egcs compiler."
|
|
|
|
false
|
|
|
|
.else
|
|
|
|
(cd ${.CURDIR}/gnu/usr.bin/egcs && \
|
1998-12-22 14:21:09 +03:00
|
|
|
${MAKE} depend && ${MAKE} ${_J} NOMAN= && \
|
|
|
|
${MAKE} NOMAN= install && ${MAKE} cleandir)
|
1998-10-16 09:05:09 +04:00
|
|
|
.endif
|
1997-03-25 01:22:15 +03:00
|
|
|
.endif
|
1999-01-24 22:18:54 +03:00
|
|
|
${MAKE} _BUILD= includes
|
1998-07-26 21:28:58 +04:00
|
|
|
(cd ${.CURDIR}/lib/csu && \
|
1998-12-22 14:21:09 +03:00
|
|
|
${MAKE} depend && ${MAKE} ${_J} NOMAN= && ${MAKE} NOMAN= install)
|
1998-07-26 21:28:58 +04:00
|
|
|
(cd ${.CURDIR}/lib && \
|
1998-12-22 14:21:09 +03:00
|
|
|
${MAKE} depend && ${MAKE} ${_J} NOMAN= && ${MAKE} NOMAN= install)
|
1998-07-26 21:28:58 +04:00
|
|
|
(cd ${.CURDIR}/gnu/lib && \
|
1998-12-22 14:21:09 +03:00
|
|
|
${MAKE} depend && ${MAKE} ${_J} NOMAN= && ${MAKE} NOMAN= install)
|
1999-01-24 22:18:54 +03:00
|
|
|
${MAKE} depend && ${MAKE} ${_J} && ${MAKE} _BUILD= install
|
1996-04-13 10:36:15 +04:00
|
|
|
.if exists(domestic) && !defined(EXPORTABLE_SYSTEM)
|
1999-01-05 10:09:58 +03:00
|
|
|
(cd ${.CURDIR}/domestic && ${MAKE} ${_J} _SLAVE_BUILD= build)
|
1998-02-16 13:07:31 +03:00
|
|
|
.endif
|
1998-02-20 04:39:38 +03:00
|
|
|
@echo -n "Build finished at: "
|
|
|
|
@date
|
1994-02-07 08:08:57 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
.include <bsd.subdir.mk>
|