Makefile revision 1.192
1# $NetBSD: Makefile,v 1.192 2001/11/19 05:05:06 perry Exp $ 2# from: @(#)Makefile 8.7 (Berkeley) 5/25/95 3 4# Environment variables without default values: 5# DESTDIR must be set before anything in this file will work. 6# RELEASEDIR is where the tarred up stuff for a snapshot or 7# release will be placed. 8# 9# Environment variables with default values: 10# LOCALTIME will set the default local time for the system you 11# build; it determines what /etc/localtime is symlink'd to. 12# KERNSRCDIR points to kernel source; it is set by default to ../sys, 13# but can be overridden. 14# KERNOBJDIR is the kernel build directory, it defaults to 15# ${KERNSRCDIR}/arch/${MACHINE}/compile, but can be overridden. 16# KERNCONFDIR is where the configuration files for kernels are found; 17# default is ${KERNSRCDIR}/arch/${MACHINE}/conf but can be overridden. 18# UPDATE is normally undefined; if defined, don't do a 'make clean' 19# before kernel compile 20# NO_SENDMAIL is normally undefined; if defined, it will not do a 21# `make distribution' in the sendmail config file source directory. 22# EXTRA_KERNELS has a machine-dependent list of kernels to build added 23# to it, but you may also set this to have extra ones built. 24# BUILD_KERNELS are a machine-dependent list of kernels that should just 25# be built in place but not made into sets or installed, e.g., an 26# INSTALL kernel used later in src/distrib/. 27# 28# Targets: 29# distribution: makes a full NetBSD distribution in DESTDIR. If 30# INSTALL_DONE is set, it will not do a `make install.' 31# if DISTRIBUTION_DONE is set, it will not do anything. 32# distrib-dirs: creates an empty NetBSD directory tree in DESTDIR. 33# Called by distribution. 34# snapshot: calls distribution, above, and then tars up the files 35# into a release(7) format in RELEASEDIR. Any port-dependent 36# stuff for this target is found in etc.${MACHINE}/Makefile.inc. 37# release: a synonym for `snapshot' 38 39# do this before bsd.own.mk so we get correct KERNSRCDIR 40.include "../Makefile.inc" 41 42# For NO_SENDMAIL, INSTPRIV, MKCRYPTO 43.include <bsd.own.mk> 44 45.MAKEOVERRIDES+= USETOOLS 46 47TZDIR= /usr/share/zoneinfo 48LOCALTIME?= UTC 49 50# Flags for creating ISO CDROM image 51# mkisofs is expected to be in $PATH, install via pkgsrc/sysutils/cdrecord 52MKISOFS?= mkisofs 53MKISOFS_FLAGS+= -J -l \ 54 -r -T -v \ 55 -P "The NetBSD Project" \ 56 -m "${RELEASEDIR}/installation/cdrom" 57 58# setting NOOBJ prevents "make obj" from doing anything; 59# an objdir would break the installation stuff below 60MKOBJ= no 61 62# MD Makefile.inc may append MD targets to BIN[123]. Make sure all 63# are empty, to preserve the old semantics of setting them below with "=". 64BIN1= 65BIN2= 66BIN3= 67 68# Directories to build in ${RELEASEDIR}. MD Makefile.inc files can 69# add to this. 70# NOTE: Parent directories must be listed before subdirectories. 71INSTALLATION_DIRS= \ 72 binary binary/sets binary/kernel installation 73 74.if exists(etc.${MACHINE}/Makefile.inc) 75.include "etc.${MACHINE}/Makefile.inc" 76.endif 77 78# Use multiple jobs for kernel builds, if NBUILDJOBS set. 79# (Taken from src/Makefile.) 80.if defined(NBUILDJOBS) 81_J= -j${NBUILDJOBS} 82.endif 83 84# -rw-r--r-- 85BINOWN= root 86BINGRP= wheel 87BIN1+= bootptab changelist csh.cshrc csh.login csh.logout daily \ 88 daily.conf dm.conf floppytab ftpchroot ftpusers ftpwelcome \ 89 gettytab group hosts hosts.lpd inetd.conf lkm.conf \ 90 mailer.conf man.conf monthly monthly.conf mrouted.conf \ 91 netconfig networks newsyslog.conf nsswitch.conf ntp.conf \ 92 phones printcap profile protocols rbootd.conf rc rc.conf \ 93 rc.lkm rc.local rc.subr rc.shutdown remote rpc \ 94 security security.conf services shells sysctl.conf syslog.conf \ 95 weekly weekly.conf wscons.conf \ 96 etc.${MACHINE}/ttys etc.${MACHINE}/disktab 97 98.if (${MACHINE_ARCH} == "m68k") || \ 99 (${MACHINE_ARCH} == "ns32k") || \ 100 (${MACHINE_ARCH} == "vax") || \ 101 (${MACHINE_ARCH} == "arm32") 102BIN1+= ld.so.conf 103.elif exists(etc.${MACHINE_ARCH}/ld.so.conf) 104BIN1+= etc.${MACHINE_ARCH}/ld.so.conf 105.endif 106 107.if exists(etc.${MACHINE_ARCH}/ttyaction) 108BIN1+= etc.${MACHINE_ARCH}/ttyaction 109.endif 110 111# -rw-rw-r-- 112BIN2+= motd 113 114# -rw------- 115BIN3+= hosts.equiv 116 117NAMEDB= 127 root.cache named.conf localhost loopback.v6 118PCS= pcs750.bin 119 120.if make(release) || make(snapshot) || make(distribution) 121# find out endianness of target and set proper flag for pwd_mkdb so that 122# it creates database in same endianness 123.if exists(${DESTDIR}/usr/include/sys/endian.h) 124TARGET_ENDIANNESS!= \ 125 printf '\#include <sys/endian.h>\n_BYTE_ORDER\n' | \ 126 ${CC} -I${DESTDIR}/usr/include -E - | tail -1 | awk '{print $$1}' 127.else 128TARGET_ENDIANNESS= 129.endif 130 131.if ${TARGET_ENDIANNESS} == "1234" 132TARGET_ENDIANNESS= -L 133.elif ${TARGET_ENDIANNESS} == "4321" 134TARGET_ENDIANNESS= -B 135.else 136TARGET_ENDIANNESS= 137.endif 138.endif 139 140.include <bsd.kernobj.mk> 141 142obj: 143 mkdir -p ${KERNOBJDIR} 144 145.if !defined(DESTDIR) || ${DESTDIR} == "" 146__warndestdir: .USE 147 @echo setenv DESTDIR before doing that! 148 @false 149distribution distrib-dirs release snapshot snap_pre snap_md_pre \ 150iso-image: __warndestdir 151.if !target(snap_md_post) 152snap_md_post: __warndestdir 153.endif 154.else 155distribution: distrib-dirs 156.if !defined(DISTRIBUTION_DONE) 157.if !defined(INSTALL_DONE) 158 (cd ..; ${MAKE} _DISTRIB= includes) 159 (cd ..; ${MAKE} _DISTRIB= install) 160.endif 161 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} \ 162 ${DESTDIR}/etc 163 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 664 ${BIN2} \ 164 ${DESTDIR}/etc 165 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 600 ${BIN3} \ 166 ${DESTDIR}/etc 167 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 aliases \ 168 ${DESTDIR}/etc/mail 169 ${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 crontab \ 170 ${DESTDIR}/var/cron/tabs/root 171 ${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 master.passwd \ 172 ${DESTDIR}/etc 173 pwd_mkdb -p ${TARGET_ENDIANNESS} -d ${DESTDIR}/ \ 174 ${DESTDIR}/etc/master.passwd 175 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 555 \ 176 MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev 177 ${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 minfree \ 178 ${DESTDIR}/var/crash 179 (cd root; \ 180 ${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 644 dot.cshrc \ 181 ${DESTDIR}/root/.cshrc; \ 182 ${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 dot.klogin \ 183 ${DESTDIR}/root/.klogin; \ 184 ${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 644 dot.login \ 185 ${DESTDIR}/root/.login; \ 186 ${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 644 dot.profile \ 187 ${DESTDIR}/root/.profile; \ 188 ${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 644 dot.shrc \ 189 ${DESTDIR}/root/.shrc; \ 190 rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \ 191 ${INSTALL} ${INSTPRIV} -l h \ 192 ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \ 193 ${INSTALL} ${INSTPRIV} -l h \ 194 ${DESTDIR}/root/.profile ${DESTDIR}/.profile) 195 (cd defaults; ${MAKE} install) 196 (cd mtree; ${MAKE} install) 197 (cd namedb; \ 198 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 \ 199 ${NAMEDB} ${DESTDIR}/etc/namedb) 200 (cd rc.d; ${MAKE} install) 201 ${INSTALL} ${INSTPRIV} -l s -o root -g wheel -m 755 \ 202 ${TZDIR}/${LOCALTIME} ${DESTDIR}/etc/localtime 203 ${INSTALL} ${INSTPRIV} -l s -o root -g wheel -m 755 \ 204 /usr/sbin/rmt ${DESTDIR}/etc/rmt 205 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g operator -m 664 /dev/null \ 206 ${DESTDIR}/etc/dumpdates 207 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g operator -m 600 /dev/null \ 208 ${DESTDIR}/etc/skeykeys 209 ${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 /dev/null \ 210 ${DESTDIR}/var/at/at.deny 211 ${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 /dev/null \ 212 ${DESTDIR}/var/cron/log 213 ${INSTALL} ${INSTPRIV} -c -o nobody -g ${BINGRP} -m 664 /dev/null \ 214 ${DESTDIR}/var/db/locate.database 215 ${INSTALL} ${INSTPRIV} -c -o uucp -g dialer -m 640 /dev/null \ 216 ${DESTDIR}/var/log/aculog 217 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \ 218 ${DESTDIR}/var/log/authlog 219 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \ 220 ${DESTDIR}/var/log/lastlog 221 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \ 222 ${DESTDIR}/var/log/lpd-errs 223 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \ 224 ${DESTDIR}/var/log/maillog 225 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \ 226 ${DESTDIR}/var/log/messages 227 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \ 228 ${DESTDIR}/var/log/secure 229 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \ 230 ${DESTDIR}/var/log/sendmail.st 231 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \ 232 ${DESTDIR}/var/log/wtmp 233 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \ 234 ${DESTDIR}/var/log/xferlog 235 ${INSTALL} ${INSTPRIV} -c -o daemon -g staff -m 664 /dev/null \ 236 ${DESTDIR}/var/msgs/bounds 237 ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \ 238 ${DESTDIR}/var/run/utmp 239 ${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \ 240 ${DESTDIR}/var/games/atc_scores 241 ${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \ 242 ${DESTDIR}/var/games/battlestar.log 243 ${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \ 244 ${DESTDIR}/var/games/cfscores 245 ${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \ 246 ${DESTDIR}/var/games/criblog 247 ${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \ 248 ${DESTDIR}/var/games/robots_roll 249 ${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \ 250 ${DESTDIR}/var/games/rogue.scores 251 ${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \ 252 ${DESTDIR}/var/games/saillog 253 ${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \ 254 ${DESTDIR}/var/games/snakerawscores 255 ${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \ 256 ${DESTDIR}/var/games/snake.log 257 ${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \ 258 ${DESTDIR}/var/games/tetris.scores 259 ${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \ 260 ${DESTDIR}/var/games/larn/llog12.0 261 ${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \ 262 ${DESTDIR}/var/games/larn/lscore12.0 263 ${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \ 264 ${DESTDIR}/var/games/larn/playerids 265 (cd etc.${MACHINE}; ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} \ 266 -g ${BINGRP} -m 444 fstab.* ${DESTDIR}/etc) 267 (cd skel; ${MAKE} distribution) 268 (cd ../usr.bin/mail; ${MAKE} distribution) 269 (cd ../gnu/usr.sbin/postfix/; ${MAKE} distribution) 270.if (${MKCRYPTO} != "no") 271 (cd ../usr.bin/ssh; ${MAKE} distribution) 272.endif 273.ifndef NO_SENDMAIL 274 (cd ../gnu/usr.sbin/sendmail/cf/cf; ${MAKE} distribution) 275.endif 276.endif 277 278distrib-dirs: 279 ${INSTALL} ${INSTPRIV} -d -o root -g wheel -m 755 ${DESTDIR} 280 ${MTREE} -def mtree/NetBSD.dist -p ${DESTDIR}/ -U ${UNPRIVED:D-W} 281 rm -f ${DESTDIR}/sys 282 ${INSTALL} ${INSTPRIV} -l s -o root -g wheel -m 755 \ 283 usr/src/sys ${DESTDIR}/sys 284 285.if !defined(RELEASEDIR) 286__warnreleasedir: .USE 287 @echo setenv RELEASEDIR before doing that! 288 @false 289release snapshot snap_pre snap_md_pre iso-image: __warnreleasedir 290.if !target(snap_md_post) 291snap_md_post: __warnreleasedir 292.endif 293.else 294release snapshot: distribution snap_pre snap_md_pre snap_kern snap_md_post 295 (cd ../distrib/sets; ${MAKE} sets) 296 sh ../distrib/sets/makesums -t ${RELEASEDIR}/binary/kernel '*.gz' 297 298# Standalone target to create a CDROM image after the release 299# was composed. Should be run after "make build" in both src and xsrc 300iso-image: iso-image_md_post 301 302iso-image_mi: iso-image_md_pre 303 @if ${MKISOFS} --version; then \ 304 mkdir -p ${RELEASEDIR}/installation/cdrom ; \ 305 ${MKISOFS} ${MKISOFS_FLAGS} \ 306 -o ${RELEASEDIR}/installation/cdrom/netbsd-${MACHINE}.iso \ 307 ${RELEASEDIR} ; \ 308 sh ../distrib/sets/makesums -t ${RELEASEDIR}/installation/cdrom '*.iso' ; \ 309 else \ 310 echo "install pkgsrc/sysutils/cdrecord and type 'make iso-image'." ; \ 311 fi 312 313# Setup the $RELEASEDIR to produce a bootable CD image: 314iso-image_md_pre: 315# nothing here -- look in the machine-dependent Makefile.inc 316 317# Fixup the CD-image to be bootable 318iso-image_md_post: iso-image_mi 319# nothing here -- look in the machine-dependent Makefile.inc 320 321snap_pre: 322# Could be a mount point, ignore the errors 323 -/bin/rm -rf ${RELEASEDIR} 324 ${INSTALL} ${INSTPRIV} -d -o root -g wheel -m 755 ${RELEASEDIR} 325.for dir in ${INSTALLATION_DIRS} 326 ${INSTALL} ${INSTPRIV} -d -o root -g wheel -m 755 ${RELEASEDIR}/${dir} 327.endfor 328 329 330# This target builds the GENERIC kernel (which must exist for all 331# ports) and puts it in binary/sets/kern.tgz, and also builds any 332# kernels specified in EXTRA_KERNELS. Since NetBSD's kernel build 333# system can create more than one kernel from a single configuration 334# we figure out how many there are, what they're named, and move them 335# to binary/kernel/${KERNEL}.${CONFIGFILE}.gz - most often KERNEL will 336# simply be "netbsd". If we don't find the "config" line, assume the 337# kernel will be "netbsd" (some config files are simple additions on 338# GENERIC, and just include it). 339# 340GETKERNELAWK= awk '/^config/ {print $$2; found=1} \ 341 END{ if (found == 0) print "netbsd"; }' 342# 343.if !target(snap_kern) 344snap_kern: 345.ifndef KERNELS_DONE 346.for configfile in GENERIC ${EXTRA_KERNELS} ${BUILD_KERNELS} 347 cd ${KERNCONFDIR} && ${CONFIG} \ 348 -b ${KERNOBJDIR}/${configfile:C/.*\///} -s ${KERNSRCDIR} ${configfile} 349.ifndef UPDATE 350 cd ${KERNOBJDIR}/${configfile:C/.*\///} && ${MAKE} distclean 351.endif 352 cd ${KERNOBJDIR}/${configfile:C/.*\///} && ${MAKE} depend && ${MAKE} ${_J} 353.endfor # kernels 354 cd ${KERNOBJDIR}/GENERIC && \ 355 tar cf - `${GETKERNELAWK} ${KERNCONFDIR}/GENERIC` |\ 356 gzip -c -9 > ${RELEASEDIR}/binary/sets/kern.tgz 357.for configfile in GENERIC ${EXTRA_KERNELS} 358 cd ${KERNOBJDIR}/${configfile:C/.*\///} && \ 359 for kernel in `${GETKERNELAWK} \ 360 ${KERNCONFDIR}/${configfile:C/.*\///}` ; do \ 361 gzip -c -9 < $${kernel} > \ 362 ${RELEASEDIR}/binary/kernel/$${kernel}.${configfile:C/.*\///}.gz ; done 363.endfor # EXTRA_KERNELS 364.endif # KERNELS_DONE 365.endif # no target(snap_kern) 366 367.endif # RELEASEDIR check 368 369snap_md_pre: 370# nothing here -- look in the machine-dependent Makefile.inc 371 372snap_md_post: 373# nothing here -- look in the machine-dependent Makefile.inc 374 375.endif # DESTDIR check 376 377.include <bsd.prog.mk> 378