Home | History | Annotate | Line # | Download | only in etc
Makefile revision 1.412.2.1
      1  1.412.2.1       tls #	$NetBSD: Makefile,v 1.412.2.1 2014/08/10 07:03:06 tls Exp $
      2       1.66     mikel #	from: @(#)Makefile	8.7 (Berkeley) 5/25/95
      3        1.1       cgd 
      4       1.96       cjs # Environment variables without default values:
      5       1.96       cjs #   DESTDIR must be set before anything in this file will work.
      6       1.96       cjs #   RELEASEDIR is where the tarred up stuff for a snapshot or
      7       1.96       cjs #	release will be placed.
      8       1.96       cjs #
      9       1.96       cjs # Environment variables with default values:
     10       1.96       cjs #   LOCALTIME will set the default local time for the system you
     11       1.96       cjs #	build; it determines what /etc/localtime is symlink'd to.
     12       1.96       cjs #   KERNSRCDIR points to kernel source; it is set by default to ../sys,
     13       1.96       cjs #	but can be overridden.
     14       1.96       cjs #   KERNOBJDIR is the kernel build directory, it defaults to
     15      1.172      jlam #	${KERNSRCDIR}/arch/${MACHINE}/compile, but can be overridden.
     16       1.96       cjs #   KERNCONFDIR is where the configuration files for kernels are found;
     17       1.96       cjs #	default is ${KERNSRCDIR}/arch/${MACHINE}/conf but can be overridden.
     18      1.270     lukem #   MKCRYPTO; if not `no', install crypto-related configuration
     19      1.304     lukem #   MKPOSTFIX; if not `no', install postfix configuration
     20      1.270     lukem #   MKUNPRIVED; if not `no', allow non-root installs.
     21      1.255     lukem #   MKUPDATE; if not `no', don't do a 'make clean' before kernel compile
     22      1.154   thorpej #
     23       1.96       cjs # Targets:
     24       1.96       cjs #    distribution: makes a full NetBSD distribution in DESTDIR. If
     25       1.96       cjs #	INSTALL_DONE is set, it will not do a `make install.'
     26      1.182       chs #	if DISTRIBUTION_DONE is set, it will not do anything.
     27       1.96       cjs #    distrib-dirs: creates an empty NetBSD directory tree in DESTDIR.
     28       1.96       cjs #	Called by distribution.
     29       1.96       cjs #    snapshot: calls distribution, above, and then tars up the files
     30      1.286        cl #	into a release(7) format in RELEASEDIR/${RELEASEMACHINEDIR}.
     31      1.241     lukem #	Any port-dependent stuff for this target is found in
     32      1.241     lukem #	etc.${MACHINE}/Makefile.inc.
     33      1.106       cjs #    release: a synonym for `snapshot'
     34      1.242     lukem #
     35      1.199        tv 
     36      1.270     lukem # For MK* vars
     37       1.90       kim .include <bsd.own.mk>
     38      1.187       jmc 
     39      1.260     lukem .include <bsd.kernobj.mk>	# For KERNSRCDIR, KERNOBJDIR, ...
     40      1.260     lukem .include <bsd.endian.mk>	# For TARGET_ENDIANNESS
     41      1.252     lukem 
     42      1.187       jmc .MAKEOVERRIDES+=	USETOOLS
     43       1.90       kim 
     44       1.23       cgd TZDIR=		/usr/share/zoneinfo
     45      1.157    kleink LOCALTIME?=	UTC
     46      1.283       agc CKSUM?=		${TOOL_CKSUM}
     47      1.330  christos MAKESUMS=	MAKE=${MAKE:Q} CKSUM=${CKSUM:Q} ${HOST_SH} ${NETBSDSRCDIR}/distrib/sets/makesums
     48      1.266     lukem DISTRIBVER!=	${HOST_SH} ${NETBSDSRCDIR}/sys/conf/osrelease.sh
     49       1.19   deraadt 
     50  1.412.2.1       tls GZIP_FLAGS= -9 ${GZIP_N_FLAG}
     51  1.412.2.1       tls 
     52      1.161   hubertf # Flags for creating ISO CDROM image
     53      1.320       apb # mkisofs is expected to be in $PATH, install via pkgsrc/sysutils/cdrtools
     54      1.242     lukem # Note: At least mkisofs 2.0 should be used.
     55      1.242     lukem #
     56      1.341    bouyer .if !defined(MKISOFS)
     57      1.407  uebayasi MKISOFS!=       (which mkisofs || echo true) 2>/dev/null
     58      1.341    bouyer .endif
     59      1.260     lukem DISTRIBREV!=	${HOST_SH} ${KERNSRCDIR}/conf/osrelease.sh -s
     60      1.224     bjh21 # ISO 9660 volume ID.  Note that this can only contain [A-Z0-9_].
     61      1.306    martin ISO_VOLID!=	echo NETBSD_${DISTRIBREV} | tr a-z A-Z
     62      1.306    martin MKISOFS_FLAGS+= -J -l -hide-joliet-trans-tbl -r -T \
     63      1.224     bjh21 		-V ${ISO_VOLID} \
     64      1.331     lukem 		-publisher "The NetBSD Project" \
     65      1.286        cl 		-m "${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/cdrom"
     66      1.306    martin .if ${MKISOFS_FLAGS:N-v}
     67      1.306    martin MKISOFS_FLAGS+=	-quiet
     68      1.306    martin .endif
     69      1.306    martin  
     70        1.1       cgd 
     71       1.80  jonathan # MD Makefile.inc may append MD targets to BIN[123].  Make sure all
     72      1.316   hubertf # are empty, to preserve the old semantics of setting them below with "+=".
     73      1.242     lukem #
     74      1.200     lukem BIN1=
     75       1.80  jonathan BIN2=
     76       1.80  jonathan BIN3=
     77       1.80  jonathan 
     78      1.286        cl # Directories to build in ${RELEASEDIR}/${RELEASEMACHINEDIR}.
     79      1.241     lukem # MD Makefile.inc files can add to this.
     80      1.117    simonb # NOTE: Parent directories must be listed before subdirectories.
     81      1.242     lukem #
     82      1.217     lukem INSTALLATION_DIRS=	binary binary/sets binary/kernel installation
     83      1.117    simonb 
     84      1.286        cl .if exists(etc.${RELEASEMACHINE}/Makefile.inc)
     85      1.286        cl .include "etc.${RELEASEMACHINE}/Makefile.inc"
     86       1.71       cjs .endif
     87       1.32       jtc 
     88       1.21       cgd # -rw-r--r--
     89       1.21       cgd BINOWN= root
     90       1.21       cgd BINGRP= wheel
     91      1.227     perry UTMPGRP= utmp
     92      1.365     joerg BIN1+=	bootptab changelist csh.cshrc csh.login \
     93      1.345   adrianp 	csh.logout daily daily.conf dm.conf envsys.conf floppytab ftpchroot \
     94      1.370   mbalmer 	ftpusers gettytab gpio.conf group hosts hosts.lpd inetd.conf \
     95      1.345   adrianp 	locate.conf login.conf mailer.conf man.conf monthly monthly.conf \
     96      1.345   adrianp 	mrouted.conf named.conf netconfig networks newsyslog.conf \
     97      1.409       agc 	nsswitch.conf ntp.conf passwd.conf pkgpath.conf phones printcap \
     98      1.408       agc 	profile protocols rbootd.conf rc rc.conf rc.local rc.subr \
     99      1.408       agc 	rc.shutdown remote rpc security security.conf services shells \
    100      1.408       agc 	shrc sysctl.conf syslog.conf weekly weekly.conf wscons.conf
    101      1.291     lukem 
    102      1.242     lukem # Use machine-specific disktab if it exists, or the MI one otherwise
    103      1.236  jdolecek .if exists(etc.${MACHINE}/disktab)
    104      1.236  jdolecek BIN1+=	etc.${MACHINE}/disktab
    105      1.236  jdolecek .else
    106      1.236  jdolecek BIN1+=	disktab
    107      1.236  jdolecek .endif
    108      1.105   mycroft 
    109      1.410      matt .if exists(etc.${MACHINE}/ld.so.conf) && empty(MACHINE_ARCH:M*arm*hf*)
    110      1.234  jdolecek BIN1+=	etc.${MACHINE}/ld.so.conf
    111      1.152     perry .endif
    112      1.152     perry 
    113      1.234  jdolecek .if exists(etc.${MACHINE}/ttyaction)
    114      1.234  jdolecek BIN1+=	etc.${MACHINE}/ttyaction
    115      1.105   mycroft .endif
    116        1.1       cgd 
    117       1.46   deraadt # -rw-rw-r--
    118       1.80  jonathan BIN2+=	motd
    119      1.400       apb FILESBUILD_motd=	YES
    120        1.1       cgd 
    121       1.77   mycroft # -rw-------
    122       1.80  jonathan BIN3+=	hosts.equiv
    123       1.77   mycroft 
    124      1.291     lukem SYSPKG=	etc
    125      1.230     perry ETC_PKG=-T etc_pkg
    126      1.230     perry BASE_PKG=-T base_pkg
    127      1.242     lukem ETC_INSTALL_FILE=cd ${.CURDIR} && ${INSTALL_FILE} ${ETC_PKG}
    128      1.261        cl ETC_INSTALL_OBJ_FILE=cd ${.OBJDIR} && ${INSTALL_FILE} ${ETC_PKG}
    129      1.230     perry 
    130      1.191        tv .if ${TARGET_ENDIANNESS} == "1234"
    131      1.252     lukem PWD_MKDB_ENDIAN=	-L
    132      1.191        tv .elif ${TARGET_ENDIANNESS} == "4321"
    133      1.252     lukem PWD_MKDB_ENDIAN=	-B
    134      1.170  jdolecek .else
    135      1.252     lukem PWD_MKDB_ENDIAN=
    136      1.191        tv .endif
    137      1.149       sjg 
    138      1.149       sjg 
    139      1.242     lukem # distribution --
    140      1.242     lukem #	Build a distribution
    141      1.242     lukem #
    142      1.324       dsl distribution: .PHONY .MAKE check_DESTDIR distrib-dirs
    143      1.182       chs .if !defined(DISTRIBUTION_DONE)
    144       1.87     perry .if !defined(INSTALL_DONE)
    145      1.285     lukem 	${MAKEDIRTARGET} ${NETBSDSRCDIR} include _DISTRIB=
    146      1.285     lukem 	${MAKEDIRTARGET} ${NETBSDSRCDIR} install _DISTRIB=
    147      1.200     lukem .endif	# !INSTALL_DONE
    148      1.285     lukem 	${MAKEDIRTARGET} . install-etc-files
    149      1.360       mrg . if ${MKX11} != "no"
    150      1.360       mrg .  if ${X11FLAVOUR} == "Xorg"
    151      1.358     lukem 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/external/mit/xorg distribution
    152      1.360       mrg .  else
    153      1.288     lukem 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/x11 distribution
    154      1.360       mrg .  endif
    155      1.360       mrg . endif
    156      1.374  uebayasi . if ${MKEXTSRC} != "no"
    157      1.374  uebayasi 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/extsrc distribution
    158      1.374  uebayasi . endif
    159      1.285     lukem 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/distrib/sets makesetfiles
    160      1.200     lukem .endif	# !DISTRIBUTION_DONE
    161      1.193   thorpej 
    162      1.266     lukem 
    163      1.400       apb # motd is copied from a different ${MOTD_SOURCE} depending on DISTRIBVER
    164      1.400       apb #
    165      1.400       apb .if !empty(DISTRIBVER:M*.99.*)
    166      1.400       apb MOTD_SOURCE=	motd.current
    167      1.400       apb .elif !empty(DISTRIBVER:M*BETA*)
    168      1.400       apb MOTD_SOURCE=	motd.beta
    169      1.400       apb .elif !empty(DISTRIBVER:M*RC*)
    170      1.400       apb MOTD_SOURCE=	motd.rc
    171      1.400       apb .elif !empty(DISTRIBVER:M*STABLE*)
    172      1.400       apb MOTD_SOURCE=	motd.stable
    173      1.400       apb .else
    174      1.400       apb MOTD_SOURCE=	motd.default
    175      1.400       apb .endif
    176      1.400       apb CLEANFILES+= motd
    177      1.400       apb motd: ${.CURDIR}/${MOTD_SOURCE} ${_NETBSD_VERSION_DEPENDS}
    178      1.400       apb 	${_MKTARGET_CREATE}
    179      1.400       apb 	${HOST_INSTALL_FILE} ${.CURDIR}/${MOTD_SOURCE} ${.TARGET}
    180      1.400       apb 
    181      1.340       apb CLEANFILES+=	MAKEDEV
    182      1.386  uebayasi MAKEDEV: ${.CURDIR}/MAKEDEV.awk ${.CURDIR}/MAKEDEV.tmpl \
    183      1.386  uebayasi     ${.CURDIR}/etc.${MACHINE}/MAKEDEV.conf
    184      1.263     lukem 	${_MKTARGET_CREATE}
    185      1.264     lukem 	MACHINE=${MACHINE:Q} MACHINE_ARCH=${MACHINE_ARCH:Q} \
    186      1.264     lukem 	    NETBSDSRCDIR=${NETBSDSRCDIR:Q} \
    187      1.359       apb 	    ${TOOL_AWK} -f ${.CURDIR}/MAKEDEV.awk ${.CURDIR}/MAKEDEV.tmpl \
    188      1.359       apb 	    > ${.TARGET}
    189      1.257  jdolecek 
    190      1.401       apb .include "${NETBSDSRCDIR}/etc/Makefile.params"
    191      1.272     lukem CLEANFILES+=	etc-release
    192      1.322       dsl etc-release: .EXEC .MAKE
    193      1.266     lukem 	${_MKTARGET_CREATE}
    194      1.266     lukem 	@(	echo "NetBSD ${DISTRIBVER}/${MACHINE}"; \
    195      1.266     lukem 		echo ; \
    196      1.269     lukem 		cat ${NETBSDSRCDIR}/sys/conf/copyright; \
    197      1.266     lukem 		echo ; \
    198  1.412.2.1       tls 		echo "Build information:"; \
    199      1.412       apb 		printf "%20s   %s\n" "Build date" "$$(date -u)"; \
    200      1.281     lukem 		printf "%20s   %s\n"  "Built by" "$${USER-root}@$$(hostname)"; \
    201  1.412.2.1       tls 		if [ -n "${BUILDID}" ]; then \
    202  1.412.2.1       tls 		    printf "%20s   %s\n"  "Build ID" "${BUILDID}" ; \
    203  1.412.2.1       tls 		fi ; \
    204  1.412.2.1       tls 		if [ -n "${BUILDINFO}" ]; then \
    205  1.412.2.1       tls 		    echo ; \
    206  1.412.2.1       tls 		    info="$$(printf "%b" ${BUILDINFO:Q})" ; \
    207  1.412.2.1       tls 		    printf "%s\n" "$${info}" \
    208  1.412.2.1       tls 		    | ${TOOL_SED} -e 's/^/        /' ; \
    209  1.412.2.1       tls 		fi ; \
    210  1.412.2.1       tls 		echo ; \
    211  1.412.2.1       tls 		echo "Build settings:"; \
    212      1.281     lukem 		echo ; \
    213      1.401       apb 		${PRINT_PARAMS} ; \
    214      1.276     lukem 	) >${.OBJDIR}/${.TARGET}
    215      1.266     lukem 
    216      1.275     lukem install-etc-release: .PHONY etc-release
    217      1.272     lukem 	${_MKMSG_INSTALL} etc/release
    218      1.266     lukem 	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 444 \
    219      1.272     lukem 	    etc-release ${DESTDIR}/etc/release
    220      1.242     lukem 
    221      1.291     lukem 
    222      1.291     lukem FILESDIR=		/etc
    223      1.291     lukem CONFIGFILES=
    224      1.291     lukem CONFIGSYMLINKS=
    225      1.291     lukem 
    226      1.291     lukem .for file in ${BIN1}
    227      1.291     lukem CONFIGFILES+=		${file}
    228      1.291     lukem FILESMODE_${file:T}=	644
    229      1.291     lukem .endfor
    230      1.291     lukem 
    231      1.291     lukem .for file in ${BIN2}
    232      1.291     lukem CONFIGFILES+=		${file}
    233      1.291     lukem FILESMODE_${file:T}=	664
    234      1.291     lukem .endfor
    235      1.291     lukem 
    236      1.291     lukem .for file in ${BIN3}
    237      1.291     lukem CONFIGFILES+=		${file}
    238      1.291     lukem FILESMODE_${file:T}=	600
    239      1.291     lukem .endfor
    240      1.291     lukem 
    241      1.327      tron .if (${MKPOSTFIX} != "no")
    242      1.291     lukem CONFIGFILES+=		aliases
    243      1.291     lukem FILESDIR_aliases=	/etc/mail
    244      1.291     lukem FILESMODE_aliases=	644
    245      1.327      tron .endif
    246      1.291     lukem 
    247      1.291     lukem CONFIGFILES+=		MAKEDEV.local
    248      1.291     lukem FILESDIR_MAKEDEV.local=	/dev
    249      1.291     lukem FILESMODE_MAKEDEV.local=${BINMODE}
    250      1.291     lukem 
    251      1.291     lukem CONFIGFILES+=		crontab
    252      1.291     lukem FILESDIR_crontab=	/var/cron/tabs
    253      1.291     lukem FILESNAME_crontab=	root
    254      1.291     lukem FILESMODE_crontab=	600
    255      1.291     lukem 
    256      1.291     lukem CONFIGFILES+=		minfree
    257      1.291     lukem FILESDIR_minfree=	/var/crash
    258      1.291     lukem FILESMODE_minfree=	600
    259      1.291     lukem 
    260      1.291     lukem CONFIGSYMLINKS+=	${TZDIR}/${LOCALTIME}	/etc/localtime \
    261      1.291     lukem 			/usr/sbin/rmt		/etc/rmt
    262      1.291     lukem 
    263      1.291     lukem 
    264      1.242     lukem # install-etc-files --
    265      1.242     lukem #	Install etc (config) files; not performed by "make build"
    266      1.242     lukem #
    267      1.340       apb install-etc-files: .PHONY .MAKE check_DESTDIR MAKEDEV
    268      1.291     lukem 	${_MKMSG_INSTALL} ${DESTDIR}/etc/master.passwd
    269      1.230     perry 	${ETC_INSTALL_FILE} -o root -g wheel -m 600 \
    270      1.230     perry 	    master.passwd ${DESTDIR}/etc
    271      1.254     lukem 	${TOOL_PWD_MKDB} -p ${PWD_MKDB_ENDIAN} -d ${DESTDIR}/ \
    272      1.230     perry 	    ${DESTDIR}/etc/master.passwd
    273      1.255     lukem .if ${MKUNPRIVED} != "no"
    274      1.222     lukem 	( \
    275      1.403  christos 		mode=0600; \
    276      1.403  christos 		for metaent in spwd.db passwd pwd.db; do \
    277      1.403  christos 	    		echo "./etc/$${metaent} type=file mode=$${mode} uname=root gname=wheel tags=etc_pkg"; \
    278      1.403  christos 			mode=0644; \
    279      1.246     lukem 		done; \
    280      1.239     lukem 	) | ${METALOG.add}
    281      1.255     lukem .endif	# MKUNPRIVED != no
    282      1.291     lukem 	${_MKMSG_INSTALL} ${DESTDIR}/etc/ttys
    283      1.289  christos 	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
    284      1.298  christos 	    ${.CURDIR}/etc.${MACHINE}/ttys ${DESTDIR}/etc
    285      1.351        ad .if exists(etc.${MACHINE}/boot.cfg)
    286      1.351        ad 	${_MKMSG_INSTALL} ${DESTDIR}/boot.cfg
    287      1.351        ad 	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
    288      1.351        ad 	    ${.CURDIR}/etc.${MACHINE}/boot.cfg ${DESTDIR}/
    289      1.351        ad .endif
    290      1.291     lukem 	${_MKMSG_INSTALL} ${DESTDIR}/dev/MAKEDEV
    291      1.259      ross 	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 555 \
    292      1.257  jdolecek 	    MAKEDEV ${DESTDIR}/dev
    293      1.291     lukem .for owner group mode file in \
    294      1.291     lukem 		${BINOWN} operator	664	/etc/dumpdates  \
    295      1.291     lukem 		${BINOWN} operator	600	/etc/skeykeys \
    296      1.291     lukem 		root wheel		600	/var/at/at.deny \
    297      1.378  dholland 		root wheel		644	/var/db/locate.database \
    298      1.291     lukem 		${BINOWN} ${BINGRP}	600	/var/log/authlog \
    299      1.291     lukem 		root wheel		600	/var/log/cron \
    300      1.313     lukem 		${BINOWN} ${UTMPGRP}	664	/var/log/lastlog \
    301      1.313     lukem 		${BINOWN} ${UTMPGRP}	664	/var/log/lastlogx \
    302      1.291     lukem 		${BINOWN} ${BINGRP}	640	/var/log/lpd-errs \
    303      1.291     lukem 		${BINOWN} ${BINGRP}	600	/var/log/maillog \
    304      1.291     lukem 		${BINOWN} ${BINGRP}	644	/var/log/messages \
    305      1.291     lukem 		${BINOWN} ${BINGRP}	600	/var/log/secure \
    306      1.313     lukem 		${BINOWN} ${UTMPGRP}	664	/var/log/wtmp \
    307      1.313     lukem 		${BINOWN} ${UTMPGRP}	664	/var/log/wtmpx \
    308      1.291     lukem 		${BINOWN} ${BINGRP}	600	/var/log/xferlog \
    309      1.291     lukem 		daemon staff		664	/var/msgs/bounds \
    310      1.291     lukem 		${BINOWN} ${UTMPGRP}	664	/var/run/utmp \
    311      1.291     lukem 		${BINOWN} ${UTMPGRP}	664	/var/run/utmpx \
    312      1.291     lukem 		games games		664	/var/games/atc_score \
    313      1.291     lukem 		games games		664	/var/games/battlestar.log \
    314      1.291     lukem 		games games		664	/var/games/cfscores \
    315      1.291     lukem 		games games		664	/var/games/criblog \
    316      1.291     lukem 		games games		660	/var/games/hackdir/perm \
    317      1.291     lukem 		games games		660	/var/games/hackdir/record \
    318      1.291     lukem 		games games		664	/var/games/larn/llog12.0 \
    319      1.291     lukem 		games games		664	/var/games/larn/lscore12.0 \
    320      1.291     lukem 		games games		664	/var/games/larn/playerids \
    321      1.291     lukem 		games games		664	/var/games/robots_roll \
    322      1.291     lukem 		games games		664	/var/games/rogue.scores \
    323      1.291     lukem 		games games		664	/var/games/saillog \
    324      1.291     lukem 		games games		664	/var/games/snakerawscores \
    325      1.291     lukem 		games games		664	/var/games/snake.log \
    326      1.291     lukem 		games games		664	/var/games/tetris.scores
    327      1.291     lukem 	${_MKMSG_INSTALL} ${DESTDIR}${file}
    328      1.385  uebayasi 	if [ ! -e ${DESTDIR}${file} -o -s ${DESTDIR}${file} ]; then \
    329      1.385  uebayasi 		${ETC_INSTALL_FILE} -o ${owner} -g ${group} -m ${mode} \
    330      1.385  uebayasi     			/dev/null ${DESTDIR}${file}; \
    331      1.385  uebayasi 	else true; fi
    332      1.291     lukem .endfor
    333      1.363      jmmv .for subdir in . defaults bluetooth iscsi mtree namedb pam.d powerd rc.d root skel ssh
    334      1.291     lukem 	${MAKEDIRTARGET} ${subdir} configinstall
    335      1.291     lukem .endfor
    336      1.357     joerg 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/external/bsd/dhcpcd/sbin/dhcpcd configinstall
    337      1.287     lukem 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/usr.bin/mail configinstall
    338      1.303     peter .if (${MKPF} != "no")
    339      1.294      yamt 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/usr.sbin/pf configinstall
    340      1.303     peter .endif
    341      1.155   thorpej .if (${MKCRYPTO} != "no")
    342      1.369       mrg 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/crypto/external/bsd/openssh/bin configinstall
    343      1.155   thorpej .endif
    344      1.304     lukem .if (${MKPOSTFIX} != "no")
    345      1.367      tron 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/external/ibm-public/postfix configinstall
    346      1.304     lukem .endif
    347      1.363      jmmv .if (${MKATF} != "no")
    348      1.363      jmmv 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/external/bsd/atf/etc/atf configinstall
    349      1.363      jmmv .endif
    350      1.406      jmmv .if (${MKKYUA} != "no")
    351      1.406      jmmv 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/external/bsd/kyua-cli/etc/kyua configinstall
    352      1.406      jmmv .endif
    353      1.247     lukem 
    354      1.247     lukem 
    355      1.247     lukem # install-obsolete-lists --
    356      1.247     lukem #	Install var/db/obsolete set lists; this is performed by "make build"
    357      1.247     lukem #
    358      1.247     lukem OBSOLETE.dir=		${.OBJDIR}/obsolete.dir
    359      1.405      matt OBSOLETE.files=		base comp etc games man misc text
    360      1.405      matt .if ${MKDEBUG} != "no"
    361      1.405      matt OBSOLETE.files+=	debug
    362      1.405      matt .endif
    363      1.376        he .if ${MKKMOD} != "no"
    364      1.376        he OBSOLETE.files+=	modules
    365      1.376        he .endif
    366      1.383     njoly .if ${MKATF} != "no"
    367      1.383     njoly OBSOLETE.files+=	tests
    368      1.383     njoly .endif
    369      1.360       mrg .if ${MKX11} != "no"
    370      1.311     lukem OBSOLETE.files+=	xbase xcomp xetc xfont xserver
    371      1.307      tron .endif
    372      1.247     lukem 
    373      1.387  uebayasi # XXX make "makeobsolete" set wise; then generate files respectively
    374      1.322       dsl install-obsolete-lists: .PHONY .MAKE
    375      1.246     lukem 	mkdir -p ${OBSOLETE.dir}
    376      1.360       mrg .if ${MKX11} != "no"
    377      1.307      tron 	(cd ${NETBSDSRCDIR}/distrib/sets && \
    378      1.364    sketch 	    AWK=${TOOL_AWK:Q} MAKE=${MAKE:Q} ${HOST_SH} ./makeobsolete -b -t ${OBSOLETE.dir})
    379      1.307      tron .else
    380      1.253     lukem 	(cd ${NETBSDSRCDIR}/distrib/sets && \
    381      1.364    sketch 	    AWK=${TOOL_AWK:Q} MAKE=${MAKE:Q} ${HOST_SH} ./makeobsolete -t ${OBSOLETE.dir})
    382      1.307      tron .endif
    383      1.246     lukem .for file in ${OBSOLETE.files}
    384      1.291     lukem 	${_MKMSG_INSTALL} ${DESTDIR}/var/db/obsolete/${file}
    385      1.387  uebayasi 	if [ ! -e ${DESTDIR}/var/db/obsolete/${file} ] || \
    386      1.387  uebayasi 	    ! cmp -s ${OBSOLETE.dir}/${file} ${DESTDIR}/var/db/obsolete/${file}; then \
    387      1.387  uebayasi 		${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
    388      1.387  uebayasi 		    ${OBSOLETE.dir}/${file} ${DESTDIR}/var/db/obsolete; \
    389      1.387  uebayasi 	else true; fi
    390      1.246     lukem .endfor
    391        1.1       cgd 
    392      1.242     lukem 
    393      1.242     lukem # distrib-dirs --
    394      1.242     lukem #	Populate $DESTDIR with directories needed by NetBSD
    395      1.242     lukem #
    396      1.371       mrg distrib-dirs: .PHONY check_DESTDIR
    397      1.371       mrg 	cd ${NETBSDSRCDIR}/etc/mtree && ${MAKE} distrib-dirs
    398      1.255     lukem 
    399      1.242     lukem 
    400      1.242     lukem # release, snapshot --
    401      1.242     lukem #	Build a full distribution including kernels & install media.
    402      1.242     lukem #
    403      1.324       dsl release snapshot: .PHONY .MAKE check_DESTDIR check_RELEASEDIR snap_md_post
    404      1.285     lukem 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/distrib/sets sets
    405      1.315       jmc 	${MAKESUMS} -A -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets \
    406      1.315       jmc 		${KERNEL_SETS:@.SETS.@kern-${.SETS.}.tgz@}
    407      1.286        cl 	${MAKESUMS} -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel '*.gz'
    408      1.161   hubertf 
    409      1.242     lukem 
    410      1.242     lukem # iso-image --
    411      1.242     lukem #	Standalone target to create a CDROM image after the release
    412      1.242     lukem #	was composed.  Should be run after "make release" in src and xsrc.
    413      1.341    bouyer #	The do-iso-image is to be called from etc.$MACHINE/Makefile.inc
    414      1.242     lukem #
    415      1.245     lukem #	Note: At least mkisofs 2.0 should be used.
    416      1.242     lukem #
    417      1.292        he CDROM_NAME_ADD?=
    418  1.412.2.1       tls CDROM_IMAGE?=${RELEASEDIR}/images/NetBSD-${DISTRIBVER}-${MACHINE}.iso
    419      1.319       apb CDROM.dir=	${.OBJDIR}/cdrom.dir
    420      1.319       apb CDROM.pathlist=	${.OBJDIR}/cdrom.pathlist
    421      1.242     lukem 
    422      1.341    bouyer iso-image:
    423      1.341    bouyer 
    424      1.341    bouyer .if ${MKISOFS} != true
    425      1.341    bouyer do-iso-image: .PHONY check_DESTDIR check_RELEASEDIR iso-image-md-post
    426  1.412.2.1       tls 	${MAKESUMS} -t ${RELEASEDIR}/images/ '*.iso'
    427      1.395     joerg 	@echo "iso-image created as: ${CDROM_IMAGE}"
    428      1.341    bouyer .else
    429      1.341    bouyer do-iso-image:
    430      1.341    bouyer 	@echo iso-image: mkisofs not found
    431      1.341    bouyer .endif
    432      1.161   hubertf 
    433      1.275     lukem iso-image-setup: .PHONY check_RELEASEDIR
    434      1.242     lukem 	rm -f ${CDROM.pathlist}
    435      1.302     fredb .for extra in README SOURCE_DATE source
    436      1.302     fredb .if exists(${RELEASEDIR}/${extra})
    437      1.302     fredb 	echo "${extra}=${RELEASEDIR}/${extra}" >> ${CDROM.pathlist}
    438      1.302     fredb .endif
    439      1.302     fredb .endfor
    440      1.342       bad 	echo "${MACHINE}/=${RELEASEDIR}/${RELEASEMACHINEDIR}/" >> ${CDROM.pathlist}
    441      1.242     lukem 	mkdir -p ${CDROM.dir}
    442  1.412.2.1       tls 
    443  1.412.2.1       tls check_imagedir:
    444  1.412.2.1       tls 	mkdir -p ${RELEASEDIR}/images
    445      1.242     lukem 
    446      1.248     lukem # iso-image-mi --
    447      1.242     lukem #	Create the image after the MD operations have completed.
    448      1.248     lukem #
    449  1.412.2.1       tls iso-image-mi: .PHONY check_DESTDIR check_RELEASEDIR iso-image-md-pre check_imagedir
    450      1.242     lukem 	@if ! ${MKISOFS} --version; then \
    451      1.320       apb 		echo "install pkgsrc/sysutils/cdrtools and run 'make iso-image'." ; \
    452      1.242     lukem 		false; \
    453      1.161   hubertf 	fi
    454      1.242     lukem 	${MKISOFS} ${MKISOFS_FLAGS} -graft-points -path-list ${CDROM.pathlist} \
    455      1.395     joerg 	    -o ${CDROM_IMAGE} ${CDROM.dir}
    456      1.242     lukem 
    457      1.248     lukem # iso-image-md-pre --
    458      1.242     lukem #	Setup ${CDROM.dir} to produce a bootable CD image.
    459      1.242     lukem #	Overridden by etc.$MACHINE/Makefile.inc
    460      1.242     lukem #
    461      1.324       dsl iso-image-md-pre: .PHONY check_DESTDIR check_RELEASEDIR iso-image-setup
    462      1.242     lukem #	(empty -- look in the machine-dependent Makefile.inc)
    463      1.161   hubertf 
    464      1.248     lukem # iso-image-md-post --
    465      1.242     lukem #	Fixup the CD-image to be bootable.
    466      1.242     lukem #	Overridden by etc.$MACHINE/Makefile.inc
    467      1.242     lukem #
    468      1.324       dsl iso-image-md-post: .PHONY check_DESTDIR check_RELEASEDIR iso-image-mi
    469      1.242     lukem #	(empty -- look in the machine-dependent Makefile.inc)
    470       1.41       cgd 
    471      1.242     lukem 
    472      1.396   tsutsui # live-image --
    473      1.396   tsutsui #	Standalone target to create live images after the release was composed.
    474      1.396   tsutsui #	Should be run after "make release" in src and xsrc.
    475      1.396   tsutsui #	LIVEIMG_RELEASEDIR specifies where to install live images and
    476      1.396   tsutsui #	it can be set in MD etc.${MACHINE}/Makefile.inc.
    477      1.396   tsutsui #
    478      1.398       riz LIVEIMG_RELEASEDIR?= ${RELEASEDIR}/images
    479      1.396   tsutsui 
    480      1.396   tsutsui live-image: .PHONY check_DESTDIR check_RELEASEDIR
    481      1.396   tsutsui 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/distrib live_image \
    482      1.396   tsutsui 	    LIVEIMG_RELEASEDIR=${LIVEIMG_RELEASEDIR}
    483      1.396   tsutsui 	${MAKESUMS} -t ${LIVEIMG_RELEASEDIR} '*.img.gz'
    484      1.396   tsutsui 
    485      1.396   tsutsui # install-image --
    486      1.396   tsutsui #	Standalone target to create installation images
    487      1.396   tsutsui #	after the release was composed.
    488      1.396   tsutsui #	Should be run after "make release" in src and xsrc.
    489      1.396   tsutsui #	INSTIMG_RELEASEDIR specifies where to install live images and
    490      1.396   tsutsui #	it can be set in MD etc.${MACHINE}/Makefile.inc.
    491      1.396   tsutsui #
    492      1.398       riz INSTIMG_RELEASEDIR?= ${RELEASEDIR}/images
    493      1.396   tsutsui 
    494      1.396   tsutsui install-image: .PHONY check_DESTDIR check_RELEASEDIR
    495      1.396   tsutsui 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/distrib install_image \
    496      1.396   tsutsui 	    INSTIMG_RELEASEDIR=${INSTIMG_RELEASEDIR}
    497      1.396   tsutsui 	${MAKESUMS} -t ${INSTIMG_RELEASEDIR} '*.img.gz'
    498      1.396   tsutsui 
    499      1.242     lukem # snap_pre --
    500      1.242     lukem #	Create ${RELEASEDIR} and necessary subdirectories.
    501      1.242     lukem #
    502      1.324       dsl snap_pre: .PHONY check_DESTDIR check_RELEASEDIR distribution
    503      1.241     lukem 	${INSTALL} -d -m 755 ${RELEASEDIR}
    504      1.255     lukem .if ${MKUPDATE} == "no"
    505      1.168       jmc # Could be a mount point, ignore the errors
    506      1.286        cl 	-/bin/rm -rf ${RELEASEDIR}/${RELEASEMACHINEDIR}
    507      1.240     lukem .endif
    508      1.286        cl 	${INSTALL} -d -m 755 ${RELEASEDIR}/${RELEASEMACHINEDIR}
    509      1.117    simonb .for dir in ${INSTALLATION_DIRS}
    510      1.286        cl 	${INSTALL} -d -m 755 ${RELEASEDIR}/${RELEASEMACHINEDIR}/${dir}
    511      1.117    simonb .endfor
    512       1.96       cjs 
    513      1.242     lukem # snap_post --
    514      1.242     lukem #	Build the install media and notes from distrib
    515      1.242     lukem #
    516      1.324       dsl snap_post: .PHONY .MAKE build_kernelsets build_releasekernels
    517      1.255     lukem .if ${MKUPDATE} == "no"
    518      1.233     lukem 	cd ${NETBSDSRCDIR}/distrib && ${MAKE} cleandir
    519      1.233     lukem .endif
    520      1.233     lukem 	cd ${NETBSDSRCDIR}/distrib && ${MAKE} depend && ${MAKE} && \
    521      1.233     lukem 	    ${MAKE} release
    522      1.233     lukem 
    523      1.324       dsl # build kernels --
    524      1.242     lukem #	This target builds the kernels specified by each port.
    525      1.242     lukem #	A port may specify the following kernels:
    526      1.196   thorpej #
    527      1.196   thorpej #	KERNEL_SETS		The list of kernels that will be
    528      1.196   thorpej #				packaged into sets, named
    529      1.196   thorpej #				kern-${kernel}.tgz.  These kernels
    530      1.203       chs #				are also placed in the binary/kernel
    531      1.196   thorpej #				area of the release package as
    532      1.196   thorpej #				netbsd-${kernel}.gz.
    533      1.196   thorpej #
    534      1.196   thorpej #	EXTRA_KERNELS		Additional kernels to place in the
    535      1.203       chs #				binary/kernel area of the release
    536      1.196   thorpej #				package as netbsd-${kernel}.gz, but
    537      1.196   thorpej #				which are not placed into sets. This
    538      1.196   thorpej #				allows a port to provide e.g. a netbootable
    539      1.196   thorpej #				installation kernel containing a ramdisk.
    540      1.196   thorpej #
    541      1.196   thorpej #	BUILD_KERNELS		Additional kernels to build which are
    542      1.196   thorpej #				not placed into sets nor into the
    543      1.203       chs #				binary/kernel area of the release
    544      1.196   thorpej #				package.  These are typically kernels
    545      1.196   thorpej #				that are built for inclusion only in
    546      1.196   thorpej #				installation disk/CD-ROM/tape images.
    547      1.116      fair #
    548      1.242     lukem #	A port may also specify KERNEL_SUFFIXES, which is an optional list
    549      1.242     lukem #	of filename suffixes for kernels to include in the kernel sets and
    550      1.242     lukem #	in the binary/kernel area of the release package (e.g. "netbsd" vs.
    551      1.242     lukem #	"netbsd.ecoff" and "netbsd.srec").  It is not an error if kernels
    552      1.242     lukem #	with these suffixes do not exist in the kernel build directory.
    553      1.197   thorpej #
    554      1.229     lukem #
    555      1.229     lukem # A list of all the kernels to build, which can be overridden from
    556      1.229     lukem # external sources (such as make(1)'s environment or command line)
    557      1.229     lukem #
    558      1.229     lukem ALL_KERNELS?=	${KERNEL_SETS} ${EXTRA_KERNELS} ${BUILD_KERNELS}
    559      1.402   mlelstv .export ALL_KERNELS
    560      1.242     lukem 
    561      1.359       apb GETKERNELAWK=	${TOOL_AWK} '/^config/ {print $$2; found=1} \
    562      1.116      fair 		END{ if (found == 0) print "netbsd"; }'
    563      1.242     lukem 
    564      1.324       dsl build_kernels: .PHONY
    565      1.232     lukem #	Configure & compile kernels listed in ${ALL_KERNELS}
    566      1.232     lukem #
    567      1.284       cgd # The 'sync' is so that all writes during the build are pushed back
    568      1.284       cgd # to the disk.  Not having it causes problems on some host systems
    569      1.284       cgd # (e.g. Linux) when building on NFS.
    570      1.284       cgd #
    571      1.201     lukem .if !defined(KERNELS_DONE)						# {
    572      1.232     lukem .for configfile in ${ALL_KERNELS}					# {
    573      1.324       dsl build_kernels: kern-${configfile}
    574      1.322       dsl kern-${configfile}: .PHONY .MAKE
    575      1.254     lukem 	cd ${KERNCONFDIR} && ${TOOL_CONFIG} -s ${KERNSRCDIR} \
    576  1.412.2.1       tls 	    -U DEBUG -b ${KERNOBJDIR}/${configfile:C/.*\///} ${configfile}
    577      1.255     lukem .if ${MKUPDATE} == "no"
    578      1.200     lukem 	cd ${KERNOBJDIR}/${configfile:C/.*\///} && ${MAKE} distclean
    579       1.96       cjs .endif
    580      1.218  sommerfe 	cd ${KERNOBJDIR}/${configfile:C/.*\///} && ${MAKE} depend && ${MAKE}
    581      1.284       cgd 	sync
    582      1.232     lukem .endfor	# ALL_KERNELS							# }
    583      1.232     lukem .endif	# KERNELS_DONE							# }
    584      1.232     lukem 
    585      1.324       dsl build_kernelsets: .PHONY
    586      1.241     lukem #	Create kernel sets from ${KERNEL_SETS} into
    587      1.286        cl #	${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets
    588      1.232     lukem #
    589      1.232     lukem .for configfile in ${KERNEL_SETS}					# {
    590      1.402   mlelstv .for configsel in ${ALL_KERNELS}
    591      1.402   mlelstv .if ${configfile} == ${configsel}
    592      1.324       dsl build_kernelsets: kernset-${configfile}
    593      1.324       dsl kernset-${configfile}: .PHONY build_kernels snap_pre
    594      1.384  christos 	@ kernlist=$$(${GETKERNELAWK} ${KERNCONFDIR}/${configfile}); \
    595      1.197   thorpej 	kerndir=${KERNOBJDIR}/${configfile:C/.*\///}; \
    596      1.256       dsl 	kernsuffixes="${KERNEL_SUFFIXES:S/^/./}"; \
    597      1.286        cl 	kern_tgz=${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets/kern-${configfile}.tgz; \
    598  1.412.2.1       tls 	pax_cmd="GZIP=${GZIP_FLAGS:Q} ${TOOL_PAX} --use-compress-program ${TOOL_GZIP:Q} -O -w -M -N ${NETBSDSRCDIR}/etc -f $${kern_tgz}"; \
    599      1.256       dsl 	cd $${kerndir} && { \
    600      1.256       dsl 		kernels=; newest=; \
    601      1.210     lukem 		for kernel in $${kernlist}; do \
    602      1.256       dsl 			for s in "" $${kernsuffixes}; do \
    603      1.256       dsl 				ks="$${kernel}$${s}"; \
    604      1.256       dsl 				[ -f $${ks} ] || continue; \
    605      1.256       dsl 				kernels="$${kernels} $${ks}"; \
    606      1.256       dsl 				[ -z "$${newest}" -o $${ks} -nt "$${newest}" ] && \
    607      1.256       dsl 					newest=$${ks}; \
    608      1.197   thorpej 			done; \
    609      1.256       dsl 		done; \
    610      1.256       dsl 		[ $${kern_tgz} -nt "$${newest}" ] || { \
    611      1.256       dsl 			echo "echo $${kernels} | $${pax_cmd}"; \
    612      1.256       dsl 			( echo "/set uname=${BINOWN} gname=${BINGRP}"; \
    613      1.256       dsl 			echo ". type=dir optional"; \
    614      1.256       dsl 			for kernel in $${kernels}; do \
    615      1.256       dsl 				echo "./$${kernel} type=file"; \
    616      1.256       dsl 			done ) | eval $${pax_cmd}; \
    617      1.256       dsl 		} \
    618      1.256       dsl 	}
    619      1.402   mlelstv .endif
    620      1.402   mlelstv .endfor
    621      1.232     lukem .endfor	# KERNEL_SETS							# }
    622      1.232     lukem 
    623      1.324       dsl build_releasekernels: .PHONY
    624      1.232     lukem #	Build kernel.gz from ${KERNEL_SETS} ${EXTRA_KERNELS} into
    625      1.286        cl #	${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel
    626      1.232     lukem #
    627      1.232     lukem .for configfile in ${KERNEL_SETS} ${EXTRA_KERNELS}			# {
    628      1.402   mlelstv .for configsel in ${ALL_KERNELS}
    629      1.402   mlelstv .if ${configfile} == ${configsel}
    630      1.324       dsl build_releasekernels: releasekern-${configfile}
    631      1.324       dsl releasekern-${configfile}: .PHONY build_kernels snap_pre
    632      1.384  christos 	@ kernlist=$$(${GETKERNELAWK} ${KERNCONFDIR}/${configfile:C/.*\///}); \
    633      1.197   thorpej 	kerndir=${KERNOBJDIR}/${configfile:C/.*\///}; \
    634      1.256       dsl 	kernsuffixes="${KERNEL_SUFFIXES:S/^/./}"; \
    635      1.256       dsl 	cd $${kerndir} && {	\
    636      1.256       dsl 		for kernel in $${kernlist}; do \
    637      1.256       dsl 			for s in "" $${kernsuffixes}; do \
    638      1.256       dsl 				ks="$${kernel}$${s}"; \
    639      1.256       dsl 				[ ! -f $${ks} ] && continue; \
    640      1.382   tsutsui 				knl_gz="${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel/$${kernel}-${configfile:C/.*\///}$${s}.gz"; \
    641      1.256       dsl 				[ $${knl_gz} -nt $${ks} ] && continue; \
    642      1.352       gdt 				rm -f $${knl_gz}; \
    643  1.412.2.1       tls 				echo "${TOOL_GZIP} ${GZIP_FLAGS} -c < $${kerndir}/$${ks} > $${knl_gz}"; \
    644  1.412.2.1       tls 				${TOOL_GZIP} ${GZIP_FLAGS} -c < $${ks} > $${knl_gz}; \
    645      1.197   thorpej 			done; \
    646      1.256       dsl 		done; \
    647      1.256       dsl 	}
    648      1.402   mlelstv .endif
    649      1.402   mlelstv .endfor
    650      1.232     lukem .endfor	# KERNEL_SETS EXTRA_KERNELS					# }
    651      1.232     lukem 
    652      1.242     lukem # snap_md_post --
    653      1.242     lukem #	Machine dependent distribution media operations.
    654      1.242     lukem #	Overridden by etc.$MACHINE/Makefile.inc
    655      1.242     lukem #
    656      1.324       dsl snap_md_post: .PHONY check_DESTDIR check_RELEASEDIR snap_post
    657      1.242     lukem #	(empty -- look in the machine-dependent Makefile.inc)
    658      1.242     lukem 
    659      1.242     lukem 
    660      1.242     lukem clean:
    661      1.246     lukem 	-rm -rf ${CDROM.dir} ${CDROM.pathlist} ${OBSOLETE.dir}
    662        1.7       cgd 
    663      1.392       jym SUBDIR=	defaults rc.d mtree
    664      1.362      cube 
    665        1.1       cgd .include <bsd.prog.mk>
    666      1.362      cube .include <bsd.subdir.mk>
    667      1.309      tron 
    668      1.309      tron test:
    669      1.309      tron 	@echo ${OBSOLETE.files}
    670