1 # $NetBSD: Makefile,v 1.76 1998/12/22 11:21:09 bouyer Exp $ 2 3 .include <bsd.own.mk> # for configuration variables. 4 5 # Configurations variables (can be set either in /etc/mk.conf or 6 # as environement variable 7 # NBUILDJOBS: the number of jobs to start in parallel in a 'make build'. 8 # defaults to 1 9 # NOMAN: if set to 1, don't build and install man pages 10 # NOSHARE: if set to 1, don't build or install /usr/share stuffs 11 # UPDATE: if set to 1, don't do a 'make cleandir' before compile 12 # DESTDIR: The target directory for installation (default to '/', 13 # which mean the current system is updated). 14 15 HAVE_GCC28!= ${CXX} --version | egrep "^(2\.8|egcs)" ; echo 16 17 .if defined(NBUILDJOBS) 18 _J= -j${NBUILDJOBS} 19 .endif 20 21 # NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW 22 23 SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share sys 24 25 .if exists(games) 26 SUBDIR+= games 27 .endif 28 29 SUBDIR+= gnu 30 # This is needed for libstdc++ and gen-params. 31 includes-gnu: includes-include includes-sys 32 33 .if exists(domestic) && !defined(EXPORTABLE_SYSTEM) 34 SUBDIR+= domestic 35 .endif 36 37 .if exists(regress) 38 .ifmake !(install) 39 SUBDIR+= regress 40 .endif 41 42 regression-tests: 43 @echo Running regression tests... 44 @(cd ${.CURDIR}/regress && ${MAKE} regress) 45 .endif 46 47 beforeinstall: 48 .ifmake build 49 @echo -n "Build started at: " 50 @date 51 .endif 52 .ifndef DESTDIR 53 (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs) 54 .else 55 (cd ${.CURDIR}/etc && ${MAKE} distrib-dirs) 56 .endif 57 58 afterinstall: 59 .if !defined(NOMAN) && !defined(NOSHARE) 60 (cd ${.CURDIR}/share/man && ${MAKE} makedb) 61 .endif 62 63 build: beforeinstall 64 .if !defined(NOSHARE) 65 (cd ${.CURDIR}/share/mk && ${MAKE} install) 66 (cd ${.CURDIR}/share/tmac && ${MAKE} && ${MAKE} install) 67 .endif 68 .if !defined(UPDATE) 69 ${MAKE} cleandir 70 .endif 71 .if empty(HAVE_GCC28) 72 .if defined(DESTDIR) 73 @echo "*** CAPUTE!" 74 @echo " You attempted to compile the world with egcs. You must" 75 @echo " first install a native egcs compiler." 76 false 77 .else 78 (cd ${.CURDIR}/gnu/usr.bin/egcs && \ 79 ${MAKE} depend && ${MAKE} ${_J} NOMAN= && \ 80 ${MAKE} NOMAN= install && ${MAKE} cleandir) 81 .endif 82 .endif 83 ${MAKE} includes 84 (cd ${.CURDIR}/lib/csu && \ 85 ${MAKE} depend && ${MAKE} ${_J} NOMAN= && ${MAKE} NOMAN= install) 86 (cd ${.CURDIR}/lib && \ 87 ${MAKE} depend && ${MAKE} ${_J} NOMAN= && ${MAKE} NOMAN= install) 88 (cd ${.CURDIR}/gnu/lib && \ 89 ${MAKE} depend && ${MAKE} ${_J} NOMAN= && ${MAKE} NOMAN= install) 90 .if exists(domestic) && !defined(EXPORTABLE_SYSTEM) 91 # libtelnet depends on libdes and libkrb. libkrb depends on 92 # libcom_err. 93 .if exists(domestic/lib/libdes) 94 (cd ${.CURDIR}/domestic/lib/libdes && \ 95 ${MAKE} depend && ${MAKE} ${_J} NOMAN= && ${MAKE} NOMAN= install) 96 .endif 97 .if exists(domestic/lib/libcom_err) 98 (cd ${.CURDIR}/domestic/lib/libcom_err && \ 99 ${MAKE} depend && ${MAKE} ${_J} NOMAN= && ${MAKE} NOMAN= install) 100 .endif 101 .if exists(domestic/lib/libkrb) 102 (cd ${.CURDIR}/domestic/lib/libkrb && \ 103 ${MAKE} depend && ${MAKE} ${_J} NOMAN= && ${MAKE} NOMAN= install) 104 .endif 105 (cd ${.CURDIR}/domestic/lib && \ 106 ${MAKE} depend && ${MAKE} ${_J} NOMAN= && ${MAKE} NOMAN= install) 107 .endif 108 ${MAKE} depend && ${MAKE} ${_J} && ${MAKE} install 109 @echo -n "Build finished at: " 110 @date 111 112 .include <bsd.subdir.mk> 113