[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / etc

Annotation of src/etc/Makefile, Revision 1.164

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

CVSweb <webmaster@jp.NetBSD.org>