Home | History | Annotate | Line # | Download | only in etc
Makefile revision 1.348.8.4
      1  1.348.8.2       mjf #	$NetBSD: Makefile,v 1.348.8.4 2008/10/05 20:11:18 mjf 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.sys.mk>		# for HOST_SH
     40      1.260     lukem .include <bsd.kernobj.mk>	# For KERNSRCDIR, KERNOBJDIR, ...
     41      1.260     lukem .include <bsd.endian.mk>	# For TARGET_ENDIANNESS
     42      1.252     lukem 
     43      1.187       jmc .MAKEOVERRIDES+=	USETOOLS
     44       1.90       kim 
     45       1.23       cgd TZDIR=		/usr/share/zoneinfo
     46      1.157    kleink LOCALTIME?=	UTC
     47      1.283       agc CKSUM?=		${TOOL_CKSUM}
     48      1.330  christos MAKESUMS=	MAKE=${MAKE:Q} CKSUM=${CKSUM:Q} ${HOST_SH} ${NETBSDSRCDIR}/distrib/sets/makesums
     49      1.266     lukem DISTRIBVER!=	${HOST_SH} ${NETBSDSRCDIR}/sys/conf/osrelease.sh
     50       1.19   deraadt 
     51      1.161   hubertf # Flags for creating ISO CDROM image
     52      1.320       apb # mkisofs is expected to be in $PATH, install via pkgsrc/sysutils/cdrtools
     53      1.242     lukem # Note: At least mkisofs 2.0 should be used.
     54      1.242     lukem #
     55      1.341    bouyer .if !defined(MKISOFS)
     56      1.341    bouyer MKISOFS!=       (which mkisofs || echo true)
     57      1.341    bouyer .endif
     58      1.260     lukem DISTRIBREV!=	${HOST_SH} ${KERNSRCDIR}/conf/osrelease.sh -s
     59      1.224     bjh21 # ISO 9660 volume ID.  Note that this can only contain [A-Z0-9_].
     60      1.306    martin ISO_VOLID!=	echo NETBSD_${DISTRIBREV} | tr a-z A-Z
     61      1.306    martin MKISOFS_FLAGS+= -J -l -hide-joliet-trans-tbl -r -T \
     62      1.224     bjh21 		-V ${ISO_VOLID} \
     63      1.331     lukem 		-publisher "The NetBSD Project" \
     64      1.286        cl 		-m "${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/cdrom"
     65      1.306    martin .if ${MKISOFS_FLAGS:N-v}
     66      1.306    martin MKISOFS_FLAGS+=	-quiet
     67      1.306    martin .endif
     68      1.306    martin  
     69        1.1       cgd 
     70       1.80  jonathan # MD Makefile.inc may append MD targets to BIN[123].  Make sure all
     71      1.316   hubertf # are empty, to preserve the old semantics of setting them below with "+=".
     72      1.242     lukem #
     73      1.200     lukem BIN1=
     74       1.80  jonathan BIN2=
     75       1.80  jonathan BIN3=
     76       1.80  jonathan 
     77      1.286        cl # Directories to build in ${RELEASEDIR}/${RELEASEMACHINEDIR}.
     78      1.241     lukem # MD Makefile.inc files can add to this.
     79      1.117    simonb # NOTE: Parent directories must be listed before subdirectories.
     80      1.242     lukem #
     81      1.217     lukem INSTALLATION_DIRS=	binary binary/sets binary/kernel installation
     82      1.117    simonb 
     83      1.286        cl .if exists(etc.${RELEASEMACHINE}/Makefile.inc)
     84      1.286        cl .include "etc.${RELEASEMACHINE}/Makefile.inc"
     85       1.71       cjs .endif
     86       1.32       jtc 
     87       1.21       cgd # -rw-r--r--
     88       1.21       cgd BINOWN= root
     89       1.21       cgd BINGRP= wheel
     90      1.227     perry UTMPGRP= utmp
     91      1.345   adrianp BIN1+=	audit-packages.conf bootptab changelist csh.cshrc csh.login \
     92  1.348.8.1       mjf 	csh.logout daily daily.conf devfsd.conf dm.conf envsys.conf \
     93  1.348.8.1       mjf 	floppytab ftpchroot \
     94      1.345   adrianp 	ftpusers gettytab group hosts hosts.lpd inetd.conf lkm.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.345   adrianp 	nsswitch.conf ntp.conf passwd.conf phones printcap profile protocols \
     98      1.291     lukem 	rbootd.conf rc rc.conf rc.lkm rc.local rc.subr rc.shutdown remote rpc \
     99      1.336     pavel 	security security.conf services shells shrc sysctl.conf syslog.conf \
    100      1.291     lukem 	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.234  jdolecek .if exists(etc.${MACHINE}/ld.so.conf)
    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.334      jmmv .if !empty(DISTRIBVER:M*.99.*)
    119      1.334      jmmv BIN2+=	motd.current
    120      1.334      jmmv FILESNAME_motd.current=	motd
    121      1.334      jmmv .elif !empty(DISTRIBVER:M*BETA*)
    122      1.334      jmmv BIN2+=	motd.beta
    123      1.334      jmmv FILESNAME_motd.beta=	motd
    124      1.334      jmmv .elif !empty(DISTRIBVER:M*RC*)
    125      1.334      jmmv BIN2+=	motd.rc
    126      1.334      jmmv FILESNAME_motd.rc=	motd
    127      1.335      jmmv .elif !empty(DISTRIBVER:M*STABLE*)
    128      1.335      jmmv BIN2+=	motd.stable
    129      1.335      jmmv FILESNAME_motd.stable=	motd
    130      1.334      jmmv .else
    131       1.80  jonathan BIN2+=	motd
    132      1.334      jmmv .endif
    133        1.1       cgd 
    134       1.77   mycroft # -rw-------
    135       1.80  jonathan BIN3+=	hosts.equiv
    136       1.77   mycroft 
    137      1.291     lukem SYSPKG=	etc
    138      1.230     perry ETC_PKG=-T etc_pkg
    139      1.230     perry BASE_PKG=-T base_pkg
    140      1.242     lukem ETC_INSTALL_FILE=cd ${.CURDIR} && ${INSTALL_FILE} ${ETC_PKG}
    141      1.261        cl ETC_INSTALL_OBJ_FILE=cd ${.OBJDIR} && ${INSTALL_FILE} ${ETC_PKG}
    142      1.230     perry 
    143      1.191        tv .if ${TARGET_ENDIANNESS} == "1234"
    144      1.252     lukem PWD_MKDB_ENDIAN=	-L
    145      1.191        tv .elif ${TARGET_ENDIANNESS} == "4321"
    146      1.252     lukem PWD_MKDB_ENDIAN=	-B
    147      1.170  jdolecek .else
    148      1.252     lukem PWD_MKDB_ENDIAN=
    149      1.191        tv .endif
    150      1.149       sjg 
    151      1.149       sjg 
    152      1.242     lukem # distribution --
    153      1.242     lukem #	Build a distribution
    154      1.242     lukem #
    155      1.324       dsl distribution: .PHONY .MAKE check_DESTDIR distrib-dirs
    156      1.182       chs .if !defined(DISTRIBUTION_DONE)
    157       1.87     perry .if !defined(INSTALL_DONE)
    158      1.285     lukem 	${MAKEDIRTARGET} ${NETBSDSRCDIR} include _DISTRIB=
    159      1.285     lukem 	${MAKEDIRTARGET} ${NETBSDSRCDIR} install _DISTRIB=
    160      1.200     lukem .endif	# !INSTALL_DONE
    161      1.285     lukem 	${MAKEDIRTARGET} . install-etc-files
    162  1.348.8.4       mjf .if ${MKXORG} != "no"
    163  1.348.8.4       mjf 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/external/mit/xorg distribution
    164  1.348.8.4       mjf .elif ${MKX11} != "no"
    165      1.288     lukem 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/x11 distribution
    166      1.288     lukem .endif
    167      1.285     lukem 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/distrib/sets makesetfiles
    168      1.200     lukem .endif	# !DISTRIBUTION_DONE
    169      1.193   thorpej 
    170      1.266     lukem 
    171      1.340       apb CLEANFILES+=	MAKEDEV
    172      1.275     lukem MAKEDEV: .EXEC
    173      1.263     lukem 	${_MKTARGET_CREATE}
    174      1.264     lukem 	MACHINE=${MACHINE:Q} MACHINE_ARCH=${MACHINE_ARCH:Q} \
    175      1.264     lukem 	    NETBSDSRCDIR=${NETBSDSRCDIR:Q} \
    176      1.264     lukem 	    awk -f ${.CURDIR}/MAKEDEV.awk ${.CURDIR}/MAKEDEV.tmpl > ${.TARGET}
    177      1.257  jdolecek 
    178      1.266     lukem RELEASEVARS=	BSDOBJDIR BSDSRCDIR BUILDID \
    179      1.332     lukem 		DESTDIR EXTERNAL_TOOLCHAIN HAVE_GCC HAVE_GDB \
    180      1.266     lukem 		INSTALLWORLDDIR \
    181      1.266     lukem 		KERNARCHDIR KERNCONFDIR KERNOBJDIR KERNSRCDIR \
    182      1.266     lukem 		MACHINE MACHINE_ARCH MAKE MAKECONF MAKEFLAGS \
    183      1.266     lukem 		MAKEOBJDIR MAKEOBJDIRPREFIX MAKEVERBOSE \
    184      1.273     lukem 		MKBFD MKCATPAGES \
    185      1.273     lukem 		MKCRYPTO MKCRYPTO_IDEA MKCRYPTO_MDC2 MKCRYPTO_RC5 MKCVS \
    186      1.333     lukem 		MKDEBUG MKDEBUGLIB MKDOC MKDYNAMICROOT \
    187      1.333     lukem 		MKGCC MKGCCCMDS MKGDB \
    188      1.303     peter 		MKHESIOD MKHOSTOBJ MKHTML MKIEEEFP MKINET6 MKINFO MKIPFILTER \
    189  1.348.8.3       mjf 		MKKERBEROS MKLDAP MKLINKLIB MKLINT \
    190  1.348.8.4       mjf 		MKMAN MKMANZ MKNLS MKNVI MKOBJ MKOBJDIRS \
    191      1.303     peter 		MKPAM MKPF MKPIC MKPICINSTALL MKPICLIB MKPOSTFIX MKPROFILE \
    192      1.326  christos 		MKSHARE MKSKEY MKSOFTFLOAT MKSTATICLIB \
    193  1.348.8.4       mjf 		MKUNPRIVED MKUPDATE MKX11 MKXORG MKYP \
    194      1.276     lukem 		NBUILDJOBS NETBSDSRCDIR \
    195      1.266     lukem 		NOCLEANDIR NODISTRIBDIRS NOINCLUDES \
    196      1.276     lukem 		OBJMACHINE \
    197  1.348.8.2       mjf 		RELEASEDIR RELEASEMACHINEDIR TOOLCHAIN_MISSING TOOLDIR \
    198  1.348.8.3       mjf 		USE_HESIOD USE_INET6 USE_JEMALLOC USE_KERBEROS USE_LDAP \
    199  1.348.8.2       mjf 		USE_PAM USE_SKEY USE_YP \
    200      1.276     lukem 		USETOOLS USR_OBJMACHINE \
    201      1.276     lukem 		X11SRCDIR
    202      1.276     lukem 
    203      1.276     lukem params: .PHONY
    204      1.276     lukem .for var in ${RELEASEVARS}
    205      1.276     lukem .if defined(${var})
    206      1.276     lukem 	@printf "%20s = '%-s'\n" ${var} ${${var}:Q}
    207      1.276     lukem .else
    208      1.276     lukem 	@printf "%20s = (undefined)\n" ${var}
    209      1.276     lukem .endif
    210      1.276     lukem .endfor
    211      1.266     lukem 
    212      1.272     lukem CLEANFILES+=	etc-release
    213      1.322       dsl etc-release: .EXEC .MAKE
    214      1.266     lukem 	${_MKTARGET_CREATE}
    215      1.266     lukem 	@(	echo "NetBSD ${DISTRIBVER}/${MACHINE}"; \
    216      1.266     lukem 		echo ; \
    217      1.269     lukem 		cat ${NETBSDSRCDIR}/sys/conf/copyright; \
    218      1.266     lukem 		echo ; \
    219      1.266     lukem 		echo "Build settings:"; \
    220      1.281     lukem 		printf "%20s   %s\n"  "Build date" "$$(date -u)"; \
    221      1.281     lukem 		printf "%20s   %s\n"  "Built by" "$${USER-root}@$$(hostname)"; \
    222      1.281     lukem 		echo ; \
    223      1.282     enami 		(cd ${.CURDIR}; ${MAKE} ${MFLAGS} -j1 params); \
    224      1.276     lukem 	) >${.OBJDIR}/${.TARGET}
    225      1.266     lukem 
    226      1.275     lukem install-etc-release: .PHONY etc-release
    227      1.272     lukem 	${_MKMSG_INSTALL} etc/release
    228      1.266     lukem 	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 444 \
    229      1.272     lukem 	    etc-release ${DESTDIR}/etc/release
    230      1.242     lukem 
    231      1.291     lukem 
    232      1.291     lukem FILESDIR=		/etc
    233      1.291     lukem CONFIGFILES=
    234      1.291     lukem CONFIGSYMLINKS=
    235      1.291     lukem 
    236      1.291     lukem .for file in ${BIN1}
    237      1.291     lukem CONFIGFILES+=		${file}
    238      1.291     lukem FILESMODE_${file:T}=	644
    239      1.291     lukem .endfor
    240      1.291     lukem 
    241      1.291     lukem .for file in ${BIN2}
    242      1.291     lukem CONFIGFILES+=		${file}
    243      1.291     lukem FILESMODE_${file:T}=	664
    244      1.291     lukem .endfor
    245      1.291     lukem 
    246      1.291     lukem .for file in ${BIN3}
    247      1.291     lukem CONFIGFILES+=		${file}
    248      1.291     lukem FILESMODE_${file:T}=	600
    249      1.291     lukem .endfor
    250      1.291     lukem 
    251      1.327      tron .if (${MKPOSTFIX} != "no")
    252      1.291     lukem CONFIGFILES+=		aliases
    253      1.291     lukem FILESDIR_aliases=	/etc/mail
    254      1.291     lukem FILESMODE_aliases=	644
    255      1.327      tron .endif
    256      1.291     lukem 
    257      1.291     lukem CONFIGFILES+=		MAKEDEV.local
    258      1.291     lukem FILESDIR_MAKEDEV.local=	/dev
    259      1.291     lukem FILESMODE_MAKEDEV.local=${BINMODE}
    260      1.291     lukem 
    261      1.291     lukem CONFIGFILES+=		crontab
    262      1.291     lukem FILESDIR_crontab=	/var/cron/tabs
    263      1.291     lukem FILESNAME_crontab=	root
    264      1.291     lukem FILESMODE_crontab=	600
    265      1.291     lukem 
    266      1.291     lukem CONFIGFILES+=		minfree
    267      1.291     lukem FILESDIR_minfree=	/var/crash
    268      1.291     lukem FILESMODE_minfree=	600
    269      1.291     lukem 
    270      1.291     lukem CONFIGSYMLINKS+=	${TZDIR}/${LOCALTIME}	/etc/localtime \
    271      1.291     lukem 			/usr/sbin/rmt		/etc/rmt
    272      1.291     lukem 
    273      1.291     lukem 
    274      1.242     lukem # install-etc-files --
    275      1.242     lukem #	Install etc (config) files; not performed by "make build"
    276      1.242     lukem #
    277      1.340       apb install-etc-files: .PHONY .MAKE check_DESTDIR MAKEDEV
    278      1.291     lukem 	${_MKMSG_INSTALL} ${DESTDIR}/etc/master.passwd
    279      1.230     perry 	${ETC_INSTALL_FILE} -o root -g wheel -m 600 \
    280      1.230     perry 	    master.passwd ${DESTDIR}/etc
    281      1.254     lukem 	${TOOL_PWD_MKDB} -p ${PWD_MKDB_ENDIAN} -d ${DESTDIR}/ \
    282      1.230     perry 	    ${DESTDIR}/etc/master.passwd
    283      1.255     lukem .if ${MKUNPRIVED} != "no"
    284      1.222     lukem 	( \
    285      1.246     lukem 		for metaent in passwd pwd.db spwd.db; do \
    286      1.246     lukem 	    		echo "./etc/$${metaent} type=file mode=0644 uname=root gname=wheel tags=etc_pkg"; \
    287      1.246     lukem 		done; \
    288      1.239     lukem 	) | ${METALOG.add}
    289      1.255     lukem .endif	# MKUNPRIVED != no
    290      1.291     lukem 	${_MKMSG_INSTALL} ${DESTDIR}/etc/ttys
    291      1.289  christos 	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
    292      1.298  christos 	    ${.CURDIR}/etc.${MACHINE}/ttys ${DESTDIR}/etc
    293  1.348.8.3       mjf .if exists(etc.${MACHINE}/boot.cfg)
    294  1.348.8.3       mjf 	${_MKMSG_INSTALL} ${DESTDIR}/boot.cfg
    295  1.348.8.3       mjf 	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
    296  1.348.8.3       mjf 	    ${.CURDIR}/etc.${MACHINE}/boot.cfg ${DESTDIR}/
    297  1.348.8.3       mjf .endif
    298      1.291     lukem 	${_MKMSG_INSTALL} ${DESTDIR}/dev/MAKEDEV
    299      1.259      ross 	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 555 \
    300      1.257  jdolecek 	    MAKEDEV ${DESTDIR}/dev
    301      1.291     lukem .for owner group mode file in \
    302      1.291     lukem 		${BINOWN} operator	664	/etc/dumpdates  \
    303      1.291     lukem 		${BINOWN} operator	600	/etc/skeykeys \
    304      1.291     lukem 		root wheel		600	/var/at/at.deny \
    305      1.291     lukem 		nobody ${BINGRP}	664	/var/db/locate.database \
    306      1.291     lukem 		${BINOWN} ${BINGRP}	600	/var/log/authlog \
    307      1.291     lukem 		root wheel		600	/var/log/cron \
    308      1.313     lukem 		${BINOWN} ${UTMPGRP}	664	/var/log/lastlog \
    309      1.313     lukem 		${BINOWN} ${UTMPGRP}	664	/var/log/lastlogx \
    310      1.291     lukem 		${BINOWN} ${BINGRP}	640	/var/log/lpd-errs \
    311      1.291     lukem 		${BINOWN} ${BINGRP}	600	/var/log/maillog \
    312      1.291     lukem 		${BINOWN} ${BINGRP}	644	/var/log/messages \
    313      1.291     lukem 		${BINOWN} ${BINGRP}	600	/var/log/secure \
    314      1.313     lukem 		${BINOWN} ${UTMPGRP}	664	/var/log/wtmp \
    315      1.313     lukem 		${BINOWN} ${UTMPGRP}	664	/var/log/wtmpx \
    316      1.291     lukem 		${BINOWN} ${BINGRP}	600	/var/log/xferlog \
    317      1.291     lukem 		daemon staff		664	/var/msgs/bounds \
    318      1.291     lukem 		${BINOWN} ${UTMPGRP}	664	/var/run/utmp \
    319      1.291     lukem 		${BINOWN} ${UTMPGRP}	664	/var/run/utmpx \
    320      1.291     lukem 		games games		664	/var/games/atc_score \
    321      1.291     lukem 		games games		664	/var/games/battlestar.log \
    322      1.291     lukem 		games games		664	/var/games/cfscores \
    323      1.291     lukem 		games games		664	/var/games/criblog \
    324      1.291     lukem 		games games		660	/var/games/hackdir/perm \
    325      1.291     lukem 		games games		660	/var/games/hackdir/record \
    326      1.291     lukem 		games games		664	/var/games/larn/llog12.0 \
    327      1.291     lukem 		games games		664	/var/games/larn/lscore12.0 \
    328      1.291     lukem 		games games		664	/var/games/larn/playerids \
    329      1.291     lukem 		games games		664	/var/games/robots_roll \
    330      1.291     lukem 		games games		664	/var/games/rogue.scores \
    331      1.291     lukem 		games games		664	/var/games/saillog \
    332      1.291     lukem 		games games		664	/var/games/snakerawscores \
    333      1.291     lukem 		games games		664	/var/games/snake.log \
    334      1.291     lukem 		games games		664	/var/games/tetris.scores
    335      1.291     lukem 	${_MKMSG_INSTALL} ${DESTDIR}${file}
    336      1.291     lukem 	${ETC_INSTALL_FILE} -o ${owner} -g ${group} -m ${mode} \
    337      1.291     lukem 	    	/dev/null ${DESTDIR}${file}
    338      1.291     lukem .endfor
    339      1.346      jmmv .for subdir in . atf defaults bluetooth iscsi mtree namedb pam.d powerd rc.d root skel ssh
    340      1.291     lukem 	${MAKEDIRTARGET} ${subdir} configinstall
    341      1.291     lukem .endfor
    342  1.348.8.4       mjf 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/external/bsd/dhcpcd/sbin/dhcpcd configinstall
    343      1.287     lukem 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/usr.bin/mail configinstall
    344      1.303     peter .if (${MKPF} != "no")
    345      1.294      yamt 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/usr.sbin/pf configinstall
    346      1.303     peter .endif
    347      1.155   thorpej .if (${MKCRYPTO} != "no")
    348      1.287     lukem 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/usr.bin/ssh configinstall
    349      1.155   thorpej .endif
    350      1.304     lukem .if (${MKPOSTFIX} != "no")
    351      1.304     lukem 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/gnu/usr.sbin/postfix configinstall
    352      1.304     lukem .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.348     njoly OBSOLETE.files=		base comp etc games man misc tests text
    360  1.348.8.4       mjf .if ${MKX11} != "no" || ${MKXORG} != "no"
    361      1.311     lukem OBSOLETE.files+=	xbase xcomp xetc xfont xserver
    362      1.307      tron .endif
    363      1.247     lukem 
    364      1.322       dsl install-obsolete-lists: .PHONY .MAKE
    365      1.246     lukem 	mkdir -p ${OBSOLETE.dir}
    366  1.348.8.4       mjf .if ${MKX11} != "no" || ${MKXORG} != "no"
    367      1.307      tron 	(cd ${NETBSDSRCDIR}/distrib/sets && \
    368      1.307      tron 	    MAKE=${MAKE:Q} ${HOST_SH} ./makeobsolete -b -t ${OBSOLETE.dir})
    369      1.307      tron .else
    370      1.253     lukem 	(cd ${NETBSDSRCDIR}/distrib/sets && \
    371      1.253     lukem 	    MAKE=${MAKE:Q} ${HOST_SH} ./makeobsolete -t ${OBSOLETE.dir})
    372      1.307      tron .endif
    373      1.246     lukem .for file in ${OBSOLETE.files}
    374      1.291     lukem 	${_MKMSG_INSTALL} ${DESTDIR}/var/db/obsolete/${file}
    375      1.246     lukem 	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
    376      1.247     lukem 	    ${OBSOLETE.dir}/${file} ${DESTDIR}/var/db/obsolete
    377      1.246     lukem .endfor
    378        1.1       cgd 
    379      1.242     lukem 
    380      1.242     lukem # distrib-dirs --
    381      1.242     lukem #	Populate $DESTDIR with directories needed by NetBSD
    382      1.242     lukem #
    383      1.255     lukem .if ${MKUNPRIVED} == "no"
    384      1.255     lukem TOOL_MTREE.unpriv=
    385      1.255     lukem .else
    386      1.255     lukem TOOL_MTREE.unpriv=	-W
    387      1.255     lukem .endif
    388      1.255     lukem 
    389      1.275     lukem distrib-dirs: .PHONY check_DESTDIR
    390      1.317       apb .if !defined(DISTRIBUTION_DONE)						# {
    391      1.317       apb # XXX: If METALOG=${DESTDIR}/METALOG (as is normal), and if ${DESTDIR}
    392      1.317       apb # does not yet exist (as often happens), then the INSTALL_DIR command
    393      1.317       apb # immediately below will create ${DESTDIR} but will fail to register
    394      1.317       apb # an entry for "." in the metalog.  We ignore the problem, because the
    395      1.317       apb # TOOL_MTREE commands a little further below will soon register an entry
    396      1.317       apb # for "." in the metalog.
    397      1.230     perry 	${INSTALL_DIR} -o root -g wheel -m 755 ${BASE_PKG} ${DESTDIR}
    398      1.317       apb # XXX: It would be nice if a single mtree invocation could both
    399      1.317       apb # append to the metalog and do real work.  Instead, we have to
    400      1.317       apb # repeat the command twice in slightly different ways.
    401      1.254     lukem 	${TOOL_MTREE} -def ${.CURDIR}/mtree/NetBSD.dist -N ${.CURDIR} \
    402      1.255     lukem 	    -p ${DESTDIR}/ -U ${TOOL_MTREE.unpriv}
    403      1.317       apb .if ${MKUNPRIVED} != "no"						# {
    404      1.317       apb 	${TOOL_MTREE} -def ${.CURDIR}/mtree/NetBSD.dist -N ${.CURDIR} \
    405      1.317       apb 	    -p ${DESTDIR}/ -C -k all | \
    406      1.317       apb 	    awk '/ optional/ {next} // {print}' | ${METALOG.add}
    407      1.317       apb .endif	# MKUNPRIVED							# }
    408      1.317       apb .endif	# DISTRIBUTION_DONE						# }
    409      1.242     lukem 
    410      1.242     lukem # release, snapshot --
    411      1.242     lukem #	Build a full distribution including kernels & install media.
    412      1.242     lukem #
    413      1.324       dsl release snapshot: .PHONY .MAKE check_DESTDIR check_RELEASEDIR snap_md_post
    414      1.285     lukem 	${MAKEDIRTARGET} ${NETBSDSRCDIR}/distrib/sets sets
    415      1.315       jmc 	${MAKESUMS} -A -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets \
    416      1.315       jmc 		${KERNEL_SETS:@.SETS.@kern-${.SETS.}.tgz@}
    417      1.286        cl 	${MAKESUMS} -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel '*.gz'
    418      1.161   hubertf 
    419      1.242     lukem 
    420      1.242     lukem # iso-image --
    421      1.242     lukem #	Standalone target to create a CDROM image after the release
    422      1.242     lukem #	was composed.  Should be run after "make release" in src and xsrc.
    423      1.341    bouyer #	The do-iso-image is to be called from etc.$MACHINE/Makefile.inc
    424      1.242     lukem #
    425      1.245     lukem #	Note: At least mkisofs 2.0 should be used.
    426      1.242     lukem #
    427      1.292        he CDROM_NAME_ADD?=
    428      1.343    bouyer CDROM.image?=${RELEASEDIR}/iso/${MACHINE}cd.iso
    429      1.319       apb CDROM.dir=	${.OBJDIR}/cdrom.dir
    430      1.319       apb CDROM.pathlist=	${.OBJDIR}/cdrom.pathlist
    431      1.242     lukem 
    432      1.341    bouyer iso-image:
    433      1.341    bouyer 
    434      1.341    bouyer .if ${MKISOFS} != true
    435      1.341    bouyer do-iso-image: .PHONY check_DESTDIR check_RELEASEDIR iso-image-md-post
    436      1.343    bouyer 	${MAKESUMS} -t ${RELEASEDIR}/iso/ '*.iso'
    437      1.265     lukem 	@echo "iso-image created as: ${CDROM.image}"
    438      1.341    bouyer .else
    439      1.341    bouyer do-iso-image:
    440      1.341    bouyer 	@echo iso-image: mkisofs not found
    441      1.341    bouyer .endif
    442      1.161   hubertf 
    443      1.275     lukem iso-image-setup: .PHONY check_RELEASEDIR
    444      1.242     lukem 	rm -f ${CDROM.pathlist}
    445      1.302     fredb .for extra in README SOURCE_DATE source
    446      1.302     fredb .if exists(${RELEASEDIR}/${extra})
    447      1.302     fredb 	echo "${extra}=${RELEASEDIR}/${extra}" >> ${CDROM.pathlist}
    448      1.302     fredb .endif
    449      1.302     fredb .endfor
    450      1.342       bad 	echo "${MACHINE}/=${RELEASEDIR}/${RELEASEMACHINEDIR}/" >> ${CDROM.pathlist}
    451      1.242     lukem 	mkdir -p ${CDROM.dir}
    452      1.286        cl 	mkdir -p ${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/cdrom
    453      1.242     lukem 
    454      1.248     lukem # iso-image-mi --
    455      1.242     lukem #	Create the image after the MD operations have completed.
    456      1.248     lukem #
    457      1.324       dsl iso-image-mi: .PHONY check_DESTDIR check_RELEASEDIR iso-image-md-pre
    458      1.242     lukem 	@if ! ${MKISOFS} --version; then \
    459      1.320       apb 		echo "install pkgsrc/sysutils/cdrtools and run 'make iso-image'." ; \
    460      1.242     lukem 		false; \
    461      1.161   hubertf 	fi
    462      1.242     lukem 	${MKISOFS} ${MKISOFS_FLAGS} -graft-points -path-list ${CDROM.pathlist} \
    463      1.242     lukem 	    -o ${CDROM.image} ${CDROM.dir}
    464      1.242     lukem 
    465      1.248     lukem # iso-image-md-pre --
    466      1.242     lukem #	Setup ${CDROM.dir} to produce a bootable CD image.
    467      1.242     lukem #	Overridden by etc.$MACHINE/Makefile.inc
    468      1.242     lukem #
    469      1.324       dsl iso-image-md-pre: .PHONY check_DESTDIR check_RELEASEDIR iso-image-setup
    470      1.242     lukem #	(empty -- look in the machine-dependent Makefile.inc)
    471      1.161   hubertf 
    472      1.248     lukem # iso-image-md-post --
    473      1.242     lukem #	Fixup the CD-image to be bootable.
    474      1.242     lukem #	Overridden by etc.$MACHINE/Makefile.inc
    475      1.242     lukem #
    476      1.324       dsl iso-image-md-post: .PHONY check_DESTDIR check_RELEASEDIR iso-image-mi
    477      1.242     lukem #	(empty -- look in the machine-dependent Makefile.inc)
    478       1.41       cgd 
    479      1.242     lukem 
    480      1.242     lukem # snap_pre --
    481      1.242     lukem #	Create ${RELEASEDIR} and necessary subdirectories.
    482      1.242     lukem #
    483      1.324       dsl snap_pre: .PHONY check_DESTDIR check_RELEASEDIR distribution
    484      1.241     lukem 	${INSTALL} -d -m 755 ${RELEASEDIR}
    485      1.255     lukem .if ${MKUPDATE} == "no"
    486      1.168       jmc # Could be a mount point, ignore the errors
    487      1.286        cl 	-/bin/rm -rf ${RELEASEDIR}/${RELEASEMACHINEDIR}
    488      1.240     lukem .endif
    489      1.286        cl 	${INSTALL} -d -m 755 ${RELEASEDIR}/${RELEASEMACHINEDIR}
    490      1.117    simonb .for dir in ${INSTALLATION_DIRS}
    491      1.286        cl 	${INSTALL} -d -m 755 ${RELEASEDIR}/${RELEASEMACHINEDIR}/${dir}
    492      1.117    simonb .endfor
    493       1.96       cjs 
    494      1.242     lukem # snap_post --
    495      1.242     lukem #	Build the install media and notes from distrib
    496      1.242     lukem #
    497      1.324       dsl snap_post: .PHONY .MAKE build_kernelsets build_releasekernels
    498      1.255     lukem .if ${MKUPDATE} == "no"
    499      1.233     lukem 	cd ${NETBSDSRCDIR}/distrib && ${MAKE} cleandir
    500      1.233     lukem .endif
    501      1.233     lukem 	cd ${NETBSDSRCDIR}/distrib && ${MAKE} depend && ${MAKE} && \
    502      1.233     lukem 	    ${MAKE} release
    503      1.233     lukem 
    504      1.324       dsl # build kernels --
    505      1.242     lukem #	This target builds the kernels specified by each port.
    506      1.242     lukem #	A port may specify the following kernels:
    507      1.196   thorpej #
    508      1.196   thorpej #	KERNEL_SETS		The list of kernels that will be
    509      1.196   thorpej #				packaged into sets, named
    510      1.196   thorpej #				kern-${kernel}.tgz.  These kernels
    511      1.203       chs #				are also placed in the binary/kernel
    512      1.196   thorpej #				area of the release package as
    513      1.196   thorpej #				netbsd-${kernel}.gz.
    514      1.196   thorpej #
    515      1.196   thorpej #	EXTRA_KERNELS		Additional kernels to place in the
    516      1.203       chs #				binary/kernel area of the release
    517      1.196   thorpej #				package as netbsd-${kernel}.gz, but
    518      1.196   thorpej #				which are not placed into sets. This
    519      1.196   thorpej #				allows a port to provide e.g. a netbootable
    520      1.196   thorpej #				installation kernel containing a ramdisk.
    521      1.196   thorpej #
    522      1.196   thorpej #	BUILD_KERNELS		Additional kernels to build which are
    523      1.196   thorpej #				not placed into sets nor into the
    524      1.203       chs #				binary/kernel area of the release
    525      1.196   thorpej #				package.  These are typically kernels
    526      1.196   thorpej #				that are built for inclusion only in
    527      1.196   thorpej #				installation disk/CD-ROM/tape images.
    528      1.116      fair #
    529      1.242     lukem #	A port may also specify KERNEL_SUFFIXES, which is an optional list
    530      1.242     lukem #	of filename suffixes for kernels to include in the kernel sets and
    531      1.242     lukem #	in the binary/kernel area of the release package (e.g. "netbsd" vs.
    532      1.242     lukem #	"netbsd.ecoff" and "netbsd.srec").  It is not an error if kernels
    533      1.242     lukem #	with these suffixes do not exist in the kernel build directory.
    534      1.197   thorpej #
    535      1.229     lukem #
    536      1.229     lukem # A list of all the kernels to build, which can be overridden from
    537      1.229     lukem # external sources (such as make(1)'s environment or command line)
    538      1.229     lukem #
    539      1.229     lukem ALL_KERNELS?=	${KERNEL_SETS} ${EXTRA_KERNELS} ${BUILD_KERNELS}
    540      1.242     lukem 
    541      1.116      fair GETKERNELAWK=	awk '/^config/ {print $$2; found=1} \
    542      1.116      fair 		END{ if (found == 0) print "netbsd"; }'
    543      1.242     lukem 
    544      1.324       dsl build_kernels: .PHONY
    545      1.232     lukem #	Configure & compile kernels listed in ${ALL_KERNELS}
    546      1.232     lukem #
    547      1.284       cgd # The 'sync' is so that all writes during the build are pushed back
    548      1.284       cgd # to the disk.  Not having it causes problems on some host systems
    549      1.284       cgd # (e.g. Linux) when building on NFS.
    550      1.284       cgd #
    551      1.201     lukem .if !defined(KERNELS_DONE)						# {
    552      1.232     lukem .for configfile in ${ALL_KERNELS}					# {
    553      1.324       dsl build_kernels: kern-${configfile}
    554      1.322       dsl kern-${configfile}: .PHONY .MAKE
    555      1.254     lukem 	cd ${KERNCONFDIR} && ${TOOL_CONFIG} -s ${KERNSRCDIR} \
    556      1.232     lukem 	    -b ${KERNOBJDIR}/${configfile:C/.*\///} ${configfile}
    557      1.255     lukem .if ${MKUPDATE} == "no"
    558      1.200     lukem 	cd ${KERNOBJDIR}/${configfile:C/.*\///} && ${MAKE} distclean
    559       1.96       cjs .endif
    560      1.218  sommerfe 	cd ${KERNOBJDIR}/${configfile:C/.*\///} && ${MAKE} depend && ${MAKE}
    561      1.284       cgd 	sync
    562      1.232     lukem .endfor	# ALL_KERNELS							# }
    563      1.232     lukem .endif	# KERNELS_DONE							# }
    564      1.232     lukem 
    565      1.324       dsl build_kernelsets: .PHONY
    566      1.241     lukem #	Create kernel sets from ${KERNEL_SETS} into
    567      1.286        cl #	${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets
    568      1.232     lukem #
    569      1.232     lukem .for configfile in ${KERNEL_SETS}					# {
    570      1.324       dsl build_kernelsets: kernset-${configfile}
    571      1.324       dsl kernset-${configfile}: .PHONY build_kernels snap_pre
    572      1.256       dsl 	@ kernlist=`${GETKERNELAWK} ${KERNCONFDIR}/${configfile}`; \
    573      1.197   thorpej 	kerndir=${KERNOBJDIR}/${configfile:C/.*\///}; \
    574      1.256       dsl 	kernsuffixes="${KERNEL_SUFFIXES:S/^/./}"; \
    575      1.286        cl 	kern_tgz=${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets/kern-${configfile}.tgz; \
    576      1.256       dsl 	pax_cmd="GZIP=-9 ${TOOL_PAX} -O -zw -M -N ${NETBSDSRCDIR}/etc -f $${kern_tgz}"; \
    577      1.256       dsl 	cd $${kerndir} && { \
    578      1.256       dsl 		kernels=; newest=; \
    579      1.210     lukem 		for kernel in $${kernlist}; do \
    580      1.256       dsl 			for s in "" $${kernsuffixes}; do \
    581      1.256       dsl 				ks="$${kernel}$${s}"; \
    582      1.256       dsl 				[ -f $${ks} ] || continue; \
    583      1.256       dsl 				kernels="$${kernels} $${ks}"; \
    584      1.256       dsl 				[ -z "$${newest}" -o $${ks} -nt "$${newest}" ] && \
    585      1.256       dsl 					newest=$${ks}; \
    586      1.197   thorpej 			done; \
    587      1.256       dsl 		done; \
    588      1.256       dsl 		[ $${kern_tgz} -nt "$${newest}" ] || { \
    589      1.256       dsl 			echo "echo $${kernels} | $${pax_cmd}"; \
    590      1.256       dsl 			( echo "/set uname=${BINOWN} gname=${BINGRP}"; \
    591      1.256       dsl 			echo ". type=dir optional"; \
    592      1.256       dsl 			for kernel in $${kernels}; do \
    593      1.256       dsl 				echo "./$${kernel} type=file"; \
    594      1.256       dsl 			done ) | eval $${pax_cmd}; \
    595      1.256       dsl 		} \
    596      1.256       dsl 	}
    597      1.232     lukem .endfor	# KERNEL_SETS							# }
    598      1.232     lukem 
    599      1.324       dsl build_releasekernels: .PHONY
    600      1.232     lukem #	Build kernel.gz from ${KERNEL_SETS} ${EXTRA_KERNELS} into
    601      1.286        cl #	${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel
    602      1.232     lukem #
    603      1.232     lukem .for configfile in ${KERNEL_SETS} ${EXTRA_KERNELS}			# {
    604      1.324       dsl build_releasekernels: releasekern-${configfile}
    605      1.324       dsl releasekern-${configfile}: .PHONY build_kernels snap_pre
    606      1.256       dsl 	@ kernlist=`${GETKERNELAWK} ${KERNCONFDIR}/${configfile:C/.*\///}`; \
    607      1.197   thorpej 	kerndir=${KERNOBJDIR}/${configfile:C/.*\///}; \
    608      1.256       dsl 	kernsuffixes="${KERNEL_SUFFIXES:S/^/./}"; \
    609      1.256       dsl 	cd $${kerndir} && {	\
    610      1.256       dsl 		for kernel in $${kernlist}; do \
    611      1.256       dsl 			for s in "" $${kernsuffixes}; do \
    612      1.256       dsl 				ks="$${kernel}$${s}"; \
    613      1.256       dsl 				[ ! -f $${ks} ] && continue; \
    614      1.286        cl 				knl_gz="${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel/$${ks}-${configfile:C/.*\///}.gz"; \
    615      1.256       dsl 				[ $${knl_gz} -nt $${ks} ] && continue; \
    616  1.348.8.3       mjf 				rm -f $${knl_gz}; \
    617      1.256       dsl 				echo "gzip -c -9 < $${kerndir}/$${ks} > $${knl_gz}"; \
    618      1.256       dsl 				gzip -c -9 < $${ks} > $${knl_gz}; \
    619      1.197   thorpej 			done; \
    620      1.256       dsl 		done; \
    621      1.256       dsl 	}
    622      1.232     lukem .endfor	# KERNEL_SETS EXTRA_KERNELS					# }
    623      1.232     lukem 
    624      1.242     lukem # snap_md_post --
    625      1.242     lukem #	Machine dependent distribution media operations.
    626      1.242     lukem #	Overridden by etc.$MACHINE/Makefile.inc
    627      1.242     lukem #
    628      1.324       dsl snap_md_post: .PHONY check_DESTDIR check_RELEASEDIR snap_post
    629      1.242     lukem #	(empty -- look in the machine-dependent Makefile.inc)
    630      1.242     lukem 
    631      1.242     lukem 
    632      1.242     lukem clean:
    633      1.246     lukem 	-rm -rf ${CDROM.dir} ${CDROM.pathlist} ${OBSOLETE.dir}
    634        1.7       cgd 
    635        1.1       cgd .include <bsd.prog.mk>
    636      1.309      tron 
    637      1.309      tron test:
    638      1.309      tron 	@echo ${OBSOLETE.files}
    639