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