[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / etc

Diff for /src/etc/Makefile between version 1.35 and 1.36

version 1.35, 1997/01/19 22:26:19 version 1.36, 1997/01/21 12:02:41
Line 167 
Line 167 
         /bin/rm -rf ${DESTDIR}/snapshot          /bin/rm -rf ${DESTDIR}/snapshot
         install -d -o root -g wheel -m 755 ${DESTDIR}/snapshot          install -d -o root -g wheel -m 755 ${DESTDIR}/snapshot
   
 # check if SNAP_GZIP_CMD is set - else set it to "gzip -9"  # check if GZIP is set - else set it to "gzip"
 # you may set it to "cat" alternatively for architectures  # you may set it to "cat" alternatively for architectures
 # where the gzip'ing would take too much time (pmax or slower :-)  # where the gzip'ing would take too much time (pmax or slower :-)
 # this way you get only tar'ed snap files and you can gzip  # this way you get only tar'ed snap files and you can gzip
 # them on a faster machine  # them on a faster machine
   
 .ifndef SNAP_GZIP_CMD  .ifndef GZIP
 SNAP_GZIP_CMD=  gzip -9  GZIP=           gzip
 SNAP_GZIP_EXT=  .gz  GZIPFLAGS=      -9
   GZIPEXT=        .gz
 .endif  .endif
   
 snap_tar:  snap_tar:
         cd ${DESTDIR} && tar cf - bin \          cd ${DESTDIR} && tar cf - bin \
             | ${SNAP_GZIP_CMD} > snapshot/bin.tar${SNAP_GZIP_EXT}              | ${GZIP} ${GZIPFLAGS} > snapshot/bin.tar${GZIPEXT}
         cd ${DESTDIR} && tar cf - dev \          cd ${DESTDIR} && tar cf - dev \
             | ${SNAP_GZIP_CMD} > snapshot/dev.tar${SNAP_GZIP_EXT}              | ${GZIP} ${GZIPFLAGS} > snapshot/dev.tar${GZIPEXT}
         cd ${DESTDIR} && tar cf - .profile .cshrc altroot etc home mnt \          cd ${DESTDIR} && tar cf - .profile .cshrc altroot etc home mnt \
             root stand sys tmp | ${SNAP_GZIP_CMD} \              root stand sys tmp | ${GZIP} ${GZIPFLAGS} \
             > snapshot/etc.tar${SNAP_GZIP_EXT}              > snapshot/etc.tar${GZIPEXT}
         cd ${DESTDIR} && tar cf - sbin \          cd ${DESTDIR} && tar cf - sbin \
             | ${SNAP_GZIP_CMD} > snapshot/sbin.tar${SNAP_GZIP_EXT}              | ${GZIP} ${GZIPFLAGS} > snapshot/sbin.tar${GZIPEXT}
         cd ${DESTDIR} && tar cf - usr/bin \          cd ${DESTDIR} && tar cf - usr/bin \
             | ${SNAP_GZIP_CMD} > snapshot/usr.bin.tar${SNAP_GZIP_EXT}              | ${GZIP} ${GZIPFLAGS} > snapshot/usr.bin.tar${GZIPEXT}
         cd ${DESTDIR} && tar cf - usr/games \          cd ${DESTDIR} && tar cf - usr/games \
             | ${SNAP_GZIP_CMD} > snapshot/usr.games.tar${SNAP_GZIP_EXT}              | ${GZIP} ${GZIPFLAGS} > snapshot/usr.games.tar${GZIPEXT}
         cd ${DESTDIR} && tar cf - usr/include \          cd ${DESTDIR} && tar cf - usr/include \
             | ${SNAP_GZIP_CMD} > snapshot/usr.include.tar${SNAP_GZIP_EXT}              | ${GZIP} ${GZIPFLAGS} > snapshot/usr.include.tar${GZIPEXT}
         cd ${DESTDIR} && tar cf - usr/lib \          cd ${DESTDIR} && tar cf - usr/lib \
             | ${SNAP_GZIP_CMD} > snapshot/usr.lib.tar${SNAP_GZIP_EXT}              | ${GZIP} ${GZIPFLAGS} > snapshot/usr.lib.tar${GZIPEXT}
         cd ${DESTDIR} && tar cf - usr/libexec \          cd ${DESTDIR} && tar cf - usr/libexec \
             | ${SNAP_GZIP_CMD} > snapshot/usr.libexec.tar${SNAP_GZIP_EXT}              | ${GZIP} ${GZIPFLAGS} > snapshot/usr.libexec.tar${GZIPEXT}
         cd ${DESTDIR} && tar cf - usr/mdec usr/libdata usr/local usr/src \          cd ${DESTDIR} && tar cf - usr/mdec usr/libdata usr/local usr/src \
             usr/obj | ${SNAP_GZIP_CMD} \              usr/obj | ${GZIP} ${GZIPFLAGS} \
             > snapshot/usr.misc.tar${SNAP_GZIP_EXT}              > snapshot/usr.misc.tar${GZIPEXT}
         cd ${DESTDIR} && tar cf - usr/sbin \          cd ${DESTDIR} && tar cf - usr/sbin \
             | ${SNAP_GZIP_CMD} > snapshot/usr.sbin.tar${SNAP_GZIP_EXT}              | ${GZIP} ${GZIPFLAGS} > snapshot/usr.sbin.tar${GZIPEXT}
         cd ${DESTDIR} && tar cf - usr/share \          cd ${DESTDIR} && tar cf - usr/share \
             | ${SNAP_GZIP_CMD} > snapshot/usr.share.tar${SNAP_GZIP_EXT}              | ${GZIP} ${GZIPFLAGS} > snapshot/usr.share.tar${GZIPEXT}
         cd ${DESTDIR} && tar cf - var \          cd ${DESTDIR} && tar cf - var \
             | ${SNAP_GZIP_CMD} > snapshot/var.tar${SNAP_GZIP_EXT}              | ${GZIP} ${GZIPFLAGS} > snapshot/var.tar${GZIPEXT}
   
 snap_md:  snap_md:
 # nothing here -- look in the machine-dependent Makefile.inc  # nothing here -- look in the machine-dependent Makefile.inc

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.36