Home | History | Annotate | Line # | Download | only in etc
Makefile revision 1.112.2.8
      1  1.112.2.8        he #	$NetBSD: Makefile,v 1.112.2.8 2000/10/25 16:59:09 he 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.96       cjs #	${KERNSRCDIR}/arch/${MACHINE}/compile/KERNELNAME, but can be
     16       1.96       cjs #	overridden.
     17       1.96       cjs #   KERNCONFDIR is where the configuration files for kernels are found;
     18       1.96       cjs #	default is ${KERNSRCDIR}/arch/${MACHINE}/conf but can be overridden.
     19       1.97       cjs #   UPDATE is normally undefined; if defined, don't do a 'make clean'
     20       1.97       cjs #	before kernel compile
     21       1.96       cjs #   NO_SENDMAIL is normally undefined; if defined, it will not do a
     22       1.96       cjs #	`make distribution' in the sendmail config file source directory.
     23       1.96       cjs #   USE_BIND4 is normally unset; if set, it will install a named.boot
     24       1.96       cjs #	instead of a named.conf in etc/namedb.
     25       1.96       cjs #   EXTRA_KERNELS has a machine-dependent list of kernels to build added
     26       1.96       cjs #	to it, but you may also set this to have extra ones built.
     27  1.112.2.7        he #   BUILD_KERNELS are a machine-dependent list of kernels that should just
     28  1.112.2.7        he #	be built in place but not made into sets or installed, e.g., an
     29  1.112.2.7        he #	INSTALL kernel used later in src/distrib/.
     30       1.96       cjs # 
     31       1.96       cjs # Targets:
     32       1.96       cjs #    distribution: makes a full NetBSD distribution in DESTDIR. If
     33       1.96       cjs #	INSTALL_DONE is set, it will not do a `make install.'
     34       1.96       cjs #    distrib-dirs: creates an empty NetBSD directory tree in DESTDIR.
     35       1.96       cjs #	Called by distribution.
     36       1.96       cjs #    snapshot: calls distribution, above, and then tars up the files
     37       1.96       cjs #	into a release(7) format in RELEASEDIR. Any port-dependent
     38       1.96       cjs #	stuff for this target is found in etc.${MACHINE}/Makefile.inc.
     39      1.106       cjs #    release: a synonym for `snapshot'
     40       1.96       cjs 
     41       1.91      tron # XXX: For NO_SENDMAIL and USE_BIND4
     42       1.90       kim .include <bsd.own.mk>
     43       1.90       kim 
     44       1.23       cgd TZDIR=		/usr/share/zoneinfo
     45       1.90       kim LOCALTIME?=	US/Pacific
     46       1.19   deraadt 
     47       1.55     perry # setting NOOBJ prevents "make obj" from doing anything;
     48       1.55     perry # an objdir would break the installation stuff below
     49      1.101     lukem MKOBJ=	no
     50        1.1       cgd 
     51       1.80  jonathan # MD Makefile.inc may append MD targets to BIN[123].  Make sure all
     52       1.80  jonathan # are empty, to preserve the old semantics of setting them below with "=".
     53       1.80  jonathan BIN1=	
     54       1.80  jonathan BIN2=
     55       1.80  jonathan BIN3=
     56       1.80  jonathan 
     57  1.112.2.5     perry # Directories to build in ${RELEASEDIR}.   MD Makefile.inc files can
     58  1.112.2.5     perry # add to this.
     59  1.112.2.5     perry # NOTE: Parent directories must be listed before subdirectories.
     60  1.112.2.5     perry INSTALLATION_DIRS= \
     61  1.112.2.5     perry 	binary binary/sets binary/kernel binary/security installation
     62  1.112.2.5     perry 
     63       1.71       cjs .if exists(etc.${MACHINE}/Makefile.inc)
     64       1.71       cjs .include "etc.${MACHINE}/Makefile.inc"
     65       1.71       cjs .endif
     66       1.32       jtc 
     67       1.96       cjs # Use multiple jobs for kernel builds, if NBUILDJOBS set.
     68       1.96       cjs # (Taken from src/Makefile.)
     69       1.96       cjs .if defined(NBUILDJOBS)
     70       1.96       cjs _J= -j${NBUILDJOBS}
     71       1.96       cjs .endif
     72       1.96       cjs 
     73       1.21       cgd # -rw-r--r--
     74       1.21       cgd BINOWN= root
     75       1.21       cgd BINGRP= wheel
     76  1.112.2.6        he BIN1+=	bootptab changelist csh.cshrc csh.login \
     77       1.92     perry 	csh.logout daily daily.conf dm.conf floppytab ftpchroot \
     78       1.92     perry 	ftpusers ftpwelcome gettytab group hosts hosts.lpd \
     79      1.105   mycroft 	inetd.conf lkm.conf mailer.conf man.conf \
     80       1.92     perry 	monthly monthly.conf mrouted.conf netstart networks \
     81       1.94     lukem 	newsyslog.conf nsswitch.conf phones printcap profile protocols \
     82       1.92     perry 	rbootd.conf rc rc.conf rc.lkm rc.local rc.subr \
     83      1.108  drochner 	rc.shutdown rc.wscons remote rpc security security.conf services \
     84      1.109  drochner 	shells syslog.conf weekly weekly.conf wscons.conf \
     85      1.109  drochner 	etc.${MACHINE}/ttys etc.${MACHINE}/disktab
     86      1.105   mycroft 
     87      1.105   mycroft .if	(${MACHINE_ARCH} == "i386") || \
     88      1.105   mycroft 	(${MACHINE_ARCH} == "m68k") || \
     89      1.105   mycroft 	(${MACHINE_ARCH} == "ns32k") || \
     90      1.105   mycroft 	(${MACHINE_ARCH} == "sparc") || \
     91      1.105   mycroft 	(${MACHINE_ARCH} == "vax") || \
     92      1.105   mycroft 	(${MACHINE_ARCH} == "arm32")
     93      1.105   mycroft BIN1+=	ld.so.conf
     94      1.105   mycroft .endif
     95        1.1       cgd 
     96       1.46   deraadt # -rw-rw-r--
     97       1.80  jonathan BIN2+=	motd
     98        1.1       cgd 
     99       1.77   mycroft # -rw-------
    100       1.80  jonathan BIN3+=	hosts.equiv
    101       1.77   mycroft 
    102       1.95   mycroft NAMEDB=	127 root.cache
    103       1.91      tron .ifdef USE_BIND4
    104       1.91      tron NAMEDB+=	named.boot
    105       1.91      tron .else
    106       1.90       kim NAMEDB+=	named.conf
    107       1.90       kim .endif
    108        1.1       cgd PCS=	pcs750.bin
    109        1.1       cgd 
    110       1.88     lukem all clean cleandir depend distclean etc includes install lint:
    111        1.1       cgd 
    112       1.34       cgd .ifndef DESTDIR
    113      1.106       cjs distribution distrib-dirs release snapshot:
    114       1.36       cgd 	@echo setenv DESTDIR before doing that!
    115       1.34       cgd 	@false
    116       1.34       cgd .else
    117        1.7       cgd distribution: distrib-dirs
    118       1.87     perry .if !defined(INSTALL_DONE)
    119      1.107    scottr 	(cd ..; ${MAKE} _DISTRIB= includes)
    120      1.107    scottr 	(cd ..; ${MAKE} _DISTRIB= install)
    121       1.87     perry .endif
    122       1.56   thorpej 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} ${DESTDIR}/etc
    123       1.56   thorpej 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 664 ${BIN2} ${DESTDIR}/etc
    124       1.77   mycroft 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 ${BIN3} ${DESTDIR}/etc
    125  1.112.2.6        he 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 aliases ${DESTDIR}/etc
    126       1.56   thorpej 	${INSTALL} -c -o root -g wheel -m 600 crontab \
    127       1.56   thorpej 	    ${DESTDIR}/var/cron/tabs/root
    128       1.56   thorpej 	${INSTALL} -c -o root -g wheel -m 600 master.passwd ${DESTDIR}/etc
    129       1.68     perry 	pwd_mkdb -p -d ${DESTDIR}/ ${DESTDIR}/etc/master.passwd
    130       1.56   thorpej 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 \
    131        1.1       cgd 	     MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev
    132       1.73     perry 	${INSTALL} -c -o root -g wheel -m 600 minfree \
    133       1.73     perry 	    ${DESTDIR}/var/crash
    134        1.1       cgd 	(cd root; \
    135       1.56   thorpej 		${INSTALL} -c -o root -g wheel -m 644 dot.cshrc \
    136        1.1       cgd 		    ${DESTDIR}/root/.cshrc; \
    137       1.65     mikel 		${INSTALL} -c -o root -g wheel -m 600 dot.klogin \
    138        1.1       cgd 		    ${DESTDIR}/root/.klogin; \
    139       1.56   thorpej 		${INSTALL} -c -o root -g wheel -m 644 dot.login \
    140        1.1       cgd 		    ${DESTDIR}/root/.login; \
    141       1.56   thorpej 		${INSTALL} -c -o root -g wheel -m 644 dot.profile \
    142        1.1       cgd 		    ${DESTDIR}/root/.profile; \
    143        1.1       cgd 		rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
    144        1.1       cgd 		ln ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
    145        1.1       cgd 		ln ${DESTDIR}/root/.profile ${DESTDIR}/.profile)
    146       1.83       mrg 	(cd mtree; ${MAKE} install)
    147       1.63     mikel 	(cd namedb; \
    148       1.63     mikel 		${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${NAMEDB} \
    149       1.64        pk 		    ${DESTDIR}/etc/namedb)
    150       1.19   deraadt 	/bin/rm -f ${DESTDIR}/etc/localtime
    151       1.19   deraadt 	ln -s ${TZDIR}/${LOCALTIME} ${DESTDIR}/etc/localtime
    152       1.48   deraadt 	/bin/rm -f ${DESTDIR}/etc/rmt
    153       1.48   deraadt 	ln -s /usr/sbin/rmt ${DESTDIR}/etc/rmt
    154       1.56   thorpej 	${INSTALL} -c -o ${BINOWN} -g operator -m 664 /dev/null \
    155       1.32       jtc 		${DESTDIR}/etc/dumpdates
    156       1.93       abs 	${INSTALL} -c -o ${BINOWN} -g operator -m 600 /dev/null \
    157       1.44   deraadt 		${DESTDIR}/etc/skeykeys
    158       1.56   thorpej 	${INSTALL} -c -o root -g wheel -m 600 /dev/null \
    159       1.38       cgd 		${DESTDIR}/var/cron/log
    160       1.56   thorpej 	${INSTALL} -c -o nobody -g ${BINGRP} -m 664 /dev/null \
    161       1.32       jtc 		${DESTDIR}/var/db/locate.database
    162  1.112.2.1      fair 	${INSTALL} -c -o uucp -g dialer -m 640 /dev/null \
    163  1.112.2.1      fair 		${DESTDIR}/var/log/aculog
    164       1.69     perry 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
    165       1.69     perry 		${DESTDIR}/var/log/authlog
    166       1.56   thorpej 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
    167       1.32       jtc 		${DESTDIR}/var/log/lastlog
    168       1.58     lukem 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
    169       1.32       jtc 		${DESTDIR}/var/log/lpd-errs
    170       1.58     lukem 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
    171       1.32       jtc 		${DESTDIR}/var/log/maillog
    172       1.58     lukem 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
    173       1.32       jtc 		${DESTDIR}/var/log/messages
    174       1.58     lukem 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
    175       1.58     lukem 		${DESTDIR}/var/log/secure
    176       1.58     lukem 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
    177       1.32       jtc 		${DESTDIR}/var/log/wtmp
    178       1.69     perry 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
    179       1.69     perry 		${DESTDIR}/var/log/xferlog
    180       1.56   thorpej 	${INSTALL} -c -o daemon -g staff -m 664 /dev/null \
    181       1.39       cgd 		${DESTDIR}/var/msgs/bounds
    182       1.56   thorpej 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
    183       1.32       jtc 		${DESTDIR}/var/run/utmp
    184       1.81       mrg 	${INSTALL} -c -o games -g games -m 664 /dev/null \
    185       1.81       mrg 		${DESTDIR}/var/games/atc_scores
    186       1.81       mrg 	${INSTALL} -c -o games -g games -m 664 /dev/null \
    187       1.81       mrg 		${DESTDIR}/var/games/battlestar.log
    188       1.81       mrg 	${INSTALL} -c -o games -g games -m 664 /dev/null \
    189       1.81       mrg 		${DESTDIR}/var/games/cfscores
    190       1.81       mrg 	${INSTALL} -c -o games -g games -m 664 /dev/null \
    191       1.82     perry 		${DESTDIR}/var/games/criblog
    192       1.81       mrg 	${INSTALL} -c -o games -g games -m 664 /dev/null \
    193       1.81       mrg 		${DESTDIR}/var/games/robots_roll
    194       1.81       mrg 	${INSTALL} -c -o games -g games -m 664 /dev/null \
    195       1.81       mrg 		${DESTDIR}/var/games/rogue.scores
    196       1.81       mrg 	${INSTALL} -c -o games -g games -m 664 /dev/null \
    197       1.81       mrg 		${DESTDIR}/var/games/saillog
    198       1.81       mrg 	${INSTALL} -c -o games -g games -m 664 /dev/null \
    199       1.81       mrg 		${DESTDIR}/var/games/snakerawscores
    200       1.81       mrg 	${INSTALL} -c -o games -g games -m 664 /dev/null \
    201       1.81       mrg 		${DESTDIR}/var/games/snake.log
    202       1.81       mrg 	${INSTALL} -c -o games -g games -m 664 /dev/null \
    203       1.81       mrg 		${DESTDIR}/var/games/tetris.scores
    204       1.81       mrg 	${INSTALL} -c -o games -g games -m 664 /dev/null \
    205       1.81       mrg 		${DESTDIR}/var/games/larn/llog12.0
    206       1.81       mrg 	${INSTALL} -c -o games -g games -m 664 /dev/null \
    207       1.81       mrg 		${DESTDIR}/var/games/larn/lscore12.0
    208       1.81       mrg 	${INSTALL} -c -o games -g games -m 664 /dev/null \
    209       1.81       mrg 		${DESTDIR}/var/games/larn/playerids
    210       1.56   thorpej 	(cd etc.${MACHINE}; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
    211        1.6       cgd 	    fstab.* ${DESTDIR}/etc)
    212       1.49       tls 	(cd ${DESTDIR}/dev; ./MAKEDEV all)
    213  1.112.2.8        he 	(cd skel; ${MAKE} distribution)
    214       1.62     perry 	(cd ../usr.bin/mail; ${MAKE} distribution)
    215       1.90       kim .ifndef NO_SENDMAIL
    216       1.35       cgd 	(cd ../usr.sbin/sendmail/cf/cf; ${MAKE} distribution)
    217  1.112.2.6        he 	${DESTDIR}/usr/libexec/sendmail/sendmail -C ${DESTDIR}/etc/sendmail.cf -O AliasFile=${DESTDIR}/etc/aliases -bi
    218       1.90       kim .endif
    219      1.112     perry .ifdef BUILD_POSTFIX
    220      1.110       mrg 	(cd ../usr.sbin/postfix/etc; ${MAKE} distribution)
    221      1.111    simonb .endif
    222        1.1       cgd 
    223        1.1       cgd 
    224        1.7       cgd distrib-dirs:
    225       1.56   thorpej 	${INSTALL} -d -o root -g wheel -m 755 ${DESTDIR}
    226       1.67     perry 	-mtree -def mtree/NetBSD.dist -p ${DESTDIR}/ -u
    227       1.28       jtc 	cd ${DESTDIR}; rm -f sys; ln -s usr/src/sys sys
    228       1.99       cjs 
    229       1.96       cjs .if !defined(RELEASEDIR)
    230  1.112.2.5     perry release snapshot snap_pre snap_md_pre snap_md_post:
    231       1.96       cjs 	@echo setenv RELEASEDIR before doing that!
    232       1.96       cjs 	@false
    233       1.96       cjs .else
    234  1.112.2.5     perry release snapshot: distribution snap_pre snap_md_pre snap_kern snap_md_post
    235       1.96       cjs 	sh ../distrib/sets/maketars -s ../distrib/sets \
    236       1.96       cjs 		-d ${DESTDIR} -t ${RELEASEDIR}/binary/sets
    237      1.104     itohy .if exists(../domestic) && !defined(EXPORTABLE_SYSTEM)
    238      1.103      fair 	sh ../distrib/sets/maketars -s ../distrib/sets \
    239      1.103      fair 		-d ${DESTDIR} -t ${RELEASEDIR}/binary/security secr
    240  1.112.2.7        he 	sh ../distrib/sets/makesums -t ${RELEASEDIR}/binary/security
    241      1.104     itohy .endif
    242  1.112.2.7        he 	sh ../distrib/sets/makesums -t ${RELEASEDIR}/binary/sets
    243  1.112.2.7        he 	sh ../distrib/sets/makesums -t ${RELEASEDIR}/binary/kernel '*.gz'
    244  1.112.2.7        he 	cd ${.CURDIR}/../distrib/notes && ${MAKE} release
    245       1.41       cgd 
    246       1.41       cgd snap_pre:
    247       1.96       cjs 	/bin/rm -rf ${RELEASEDIR}
    248       1.96       cjs 	${INSTALL} -d -o root -g wheel -m 755 ${RELEASEDIR}
    249  1.112.2.5     perry .for dir in ${INSTALLATION_DIRS}
    250  1.112.2.5     perry 	${INSTALL} -d -o root -g wheel -m 755 ${RELEASEDIR}/${dir}
    251  1.112.2.5     perry .endfor
    252       1.96       cjs 
    253       1.96       cjs # the regular expression does a basename(1) on .CURDIR so that we don't
    254       1.96       cjs # have to keep looking up .. at compile time.
    255       1.96       cjs KERNSRCDIR?=	${.CURDIR:C/[^\/]+$//}sys
    256       1.96       cjs KERNOBJDIR?=	${KERNSRCDIR}/arch/${MACHINE}/compile
    257       1.96       cjs KERNCONFDIR?=	${KERNSRCDIR}/arch/${MACHINE}/conf
    258       1.96       cjs 
    259       1.96       cjs # This target builds the GENERIC kernel (which must exist for all
    260       1.96       cjs # ports) and puts it in binary/sets/kern.tgz, and also builds any
    261  1.112.2.2      fair # kernels specified in EXTRA_KERNELS. Since NetBSD's kernel build
    262  1.112.2.2      fair # system can create more than one kernel from a single configuration
    263  1.112.2.2      fair # we figure out how many there are, what they're named, and move them
    264  1.112.2.2      fair # to binary/kernel/${KERNEL}.${CONFIGFILE}.gz - most often KERNEL will
    265  1.112.2.4      fair # simply be "netbsd". If we don't find the "config" line, assume the
    266  1.112.2.4      fair # kernel will be "netbsd" (some config files are simple additions on
    267  1.112.2.4      fair # GENERIC, and just include it).
    268  1.112.2.4      fair #
    269  1.112.2.4      fair GETKERNELAWK=	awk '/^config/ {print $$2; found=1} \
    270  1.112.2.4      fair 		END{ if (found == 0) print "netbsd"; }'
    271       1.96       cjs #
    272  1.112.2.5     perry .if !target(snap_kern)
    273       1.96       cjs snap_kern:
    274  1.112.2.7        he .for configfile in GENERIC ${EXTRA_KERNELS} ${BUILD_KERNELS}
    275       1.96       cjs 	cd ${KERNCONFDIR} && config \
    276  1.112.2.2      fair 		-b ${KERNOBJDIR}/${configfile} -s ${KERNSRCDIR} ${configfile}
    277       1.98       cjs .ifndef UPDATE
    278  1.112.2.2      fair 	cd ${KERNOBJDIR}/${configfile} && ${MAKE} clean 
    279       1.96       cjs .endif
    280  1.112.2.3      fair 	cd ${KERNOBJDIR}/${configfile} && ${MAKE} depend && ${MAKE} ${_J}
    281  1.112.2.2      fair 	cd ${KERNOBJDIR}/${configfile} &&	\
    282  1.112.2.4      fair 		for kernel in `${GETKERNELAWK} \
    283  1.112.2.2      fair 			${KERNCONFDIR}/${configfile}` ; {   \
    284  1.112.2.2      fair 		gzip -c -9 < $${kernel} > \
    285  1.112.2.2      fair 			${RELEASEDIR}/binary/kernel/$${kernel}.${configfile}.gz ; }
    286  1.112.2.7        he .endfor # kernels
    287  1.112.2.7        he 	cd ${KERNOBJDIR}/GENERIC &&	\
    288  1.112.2.7        he 		tar cf - `${GETKERNELAWK} ${KERNCONFDIR}/GENERIC` |\
    289  1.112.2.7        he 		gzip -c -9 > ${RELEASEDIR}/binary/sets/kern.tgz
    290  1.112.2.7        he .for configfile in GENERIC ${EXTRA_KERNELS}
    291  1.112.2.7        he 	cd ${KERNOBJDIR}/${configfile} && \
    292  1.112.2.7        he 		for kernel in `${GETKERNELAWK} \
    293  1.112.2.7        he 			${KERNCONFDIR}/${configfile}` ; do \
    294  1.112.2.7        he 		gzip -c -9 < $${kernel} > \
    295  1.112.2.7        he 			${RELEASEDIR}/binary/kernel/$${kernel}.${configfile}.gz; \
    296  1.112.2.7        he 		done
    297       1.96       cjs .endfor # EXTRA_KERNELS
    298  1.112.2.5     perry .endif # no target(snap_kern)
    299       1.96       cjs .endif # RELEASEDIR check
    300       1.41       cgd 
    301  1.112.2.5     perry snap_md_pre:
    302  1.112.2.5     perry # nothing here -- look in the machine-dependent Makefile.inc
    303  1.112.2.5     perry 
    304  1.112.2.5     perry snap_md_post:
    305       1.41       cgd # nothing here -- look in the machine-dependent Makefile.inc
    306       1.41       cgd 
    307       1.34       cgd .endif	# DESTDIR check
    308        1.7       cgd 
    309        1.1       cgd .include <bsd.prog.mk>
    310