NetBSD/etc/Makefile

142 lines
5.1 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.55 1996/10/16 01:30:11 perry Exp $
1993-08-01 09:37:30 +04:00
# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
1993-03-21 12:45:37 +03:00
1993-07-17 18:17:24 +04:00
TZDIR= /usr/share/zoneinfo
LOCALTIME= US/Pacific
# setting NOOBJ prevents "make obj" from doing anything;
# an objdir would break the installation stuff below
1993-03-21 12:45:37 +03:00
NOOBJ= oobj
.if exists(etc.${MACHINE}/Makefile.inc)
.include "etc.${MACHINE}/Makefile.inc"
.endif
# -rw-r--r--
BINOWN= root
BINGRP= wheel
1994-06-15 08:28:06 +04:00
BIN1= aliases bootptab changelist csh.cshrc csh.login csh.logout daily \
dm.conf ftpusers ftpchroot gettytab group hosts hosts.equiv hosts.lpd \
inetd.conf man.conf monthly motd mrouted.conf myname netstart \
networks newsyslog.conf phones printcap protocols rbootd.conf rc \
rc.local remote rpc security services shells syslog.conf weekly \
etc.${MACHINE}/ttys etc.${MACHINE}/disktab
1993-03-21 12:45:37 +03:00
# -rw-rw-r--
1993-03-21 12:45:37 +03:00
BIN2= motd
NAMEDB= localhost.rev named.boot root.cache
PCS= pcs750.bin
all clean cleandir depend etc includes install lint:
1993-03-21 12:45:37 +03:00
.ifndef DESTDIR
distribution distrib-dirs snapshot:
1994-02-09 10:32:23 +03:00
@echo setenv DESTDIR before doing that!
@false
.else
distribution: distrib-dirs
(cd ..; ${MAKE} includes)
(cd ..; ${MAKE} install)
install -c -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} ${DESTDIR}/etc
install -c -o ${BINOWN} -g ${BINGRP} -m 664 ${BIN2} ${DESTDIR}/etc
1993-04-02 11:18:23 +04:00
install -c -o root -g wheel -m 600 crontab ${DESTDIR}/var/cron/tabs/root
1993-03-21 12:45:37 +03:00
install -c -o root -g wheel -m 600 master.passwd ${DESTDIR}/etc
chroot ${DESTDIR}/ pwd_mkdb -p /etc/master.passwd
1993-03-21 12:45:37 +03:00
install -c -o ${BINOWN} -g ${BINGRP} -m 555 \
MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev
(cd root; \
install -c -o root -g wheel -m 644 dot.cshrc \
${DESTDIR}/root/.cshrc; \
install -c -o root -g wheel -m 644 dot.klogin \
${DESTDIR}/root/.klogin; \
install -c -o root -g wheel -m 644 dot.login \
${DESTDIR}/root/.login; \
install -c -o root -g wheel -m 644 dot.profile \
${DESTDIR}/root/.profile; \
rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
ln ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
ln ${DESTDIR}/root/.profile ${DESTDIR}/.profile)
(cd mtree; \
install -c -o root -g wheel -m 600 special \
${DESTDIR}/etc/mtree; \
install -c -o root -g wheel -m 444 4.4BSD.dist \
${DESTDIR}/etc/mtree)
1993-03-21 12:45:37 +03:00
cd namedb; install -c -o ${BINOWN} -g ${BINGRP} -m 644 ${NAMEDB} \
${DESTDIR}/etc/namedb
/bin/rm -f ${DESTDIR}/etc/localtime
ln -s ${TZDIR}/${LOCALTIME} ${DESTDIR}/etc/localtime
/bin/rm -f ${DESTDIR}/etc/rmt
ln -s /usr/sbin/rmt ${DESTDIR}/etc/rmt
1993-03-21 12:45:37 +03:00
install -c -o ${BINOWN} -g operator -m 664 /dev/null \
${DESTDIR}/etc/dumpdates
1994-05-24 10:09:47 +04:00
install -c -o ${BINOWN} -g operator -m 644 /dev/null \
${DESTDIR}/etc/skeykeys
1994-02-17 03:12:56 +03:00
install -c -o root -g wheel -m 600 /dev/null \
${DESTDIR}/var/cron/log
install -c -o nobody -g ${BINGRP} -m 664 /dev/null \
${DESTDIR}/var/db/locate.database
install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
${DESTDIR}/var/log/lastlog
install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
${DESTDIR}/var/log/lpd-errs
1993-03-21 12:45:37 +03:00
install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
${DESTDIR}/var/log/maillog
1993-03-21 12:45:37 +03:00
install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
${DESTDIR}/var/log/messages
1993-03-21 12:45:37 +03:00
install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
${DESTDIR}/var/log/wtmp
1994-02-19 11:08:30 +03:00
install -c -o daemon -g staff -m 664 /dev/null \
${DESTDIR}/var/msgs/bounds
1993-03-21 12:45:37 +03:00
install -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
${DESTDIR}/var/run/utmp
1993-03-21 12:45:37 +03:00
(cd etc.${MACHINE}; install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
fstab.* ${DESTDIR}/etc)
(cd ${DESTDIR}/dev; ./MAKEDEV all)
1993-03-21 12:45:37 +03:00
.if ${MACHINE} == "vax"
(cd etc.vax; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${PCS} \
${DESTDIR}/)
.endif
1994-02-09 10:29:36 +03:00
(cd ../usr.sbin/sendmail/cf/cf; ${MAKE} distribution)
1993-03-21 12:45:37 +03:00
distrib-dirs:
install -d -o root -g wheel -m 755 ${DESTDIR}
-mtree -def mtree/4.4BSD.dist -p ${DESTDIR}/ -u
cd ${DESTDIR}; rm -f sys; ln -s usr/src/sys sys
snapshot: distribution snap_pre snap_tar snap_md
cd ${DESTDIR}/snapshot && cksum * > CKSUMS
snap_pre:
/bin/rm -rf ${DESTDIR}/snapshot
install -d -o root -g wheel -m 755 ${DESTDIR}/snapshot
snap_tar:
cd ${DESTDIR} && tar cf - bin | gzip -9 > snapshot/bin.tar.gz
cd ${DESTDIR} && tar cf - dev | gzip -9 > snapshot/dev.tar.gz
cd ${DESTDIR} && tar cf - .profile .cshrc etc mnt root sys tmp | \
gzip -9 > snapshot/etc.tar.gz
cd ${DESTDIR} && tar cf - sbin | gzip -9 > snapshot/sbin.tar.gz
cd ${DESTDIR} && tar cf - usr/bin | gzip -9 > snapshot/usr.bin.tar.gz
cd ${DESTDIR} && tar cf - usr/games | gzip -9 > \
snapshot/usr.games.tar.gz
cd ${DESTDIR} && tar cf - usr/include | gzip -9 > \
snapshot/usr.include.tar.gz
cd ${DESTDIR} && tar cf - usr/lib | gzip -9 > snapshot/usr.lib.tar.gz
cd ${DESTDIR} && tar cf - usr/libexec | gzip -9 > \
snapshot/usr.libexec.tar.gz
cd ${DESTDIR} && tar cf - usr/mdec usr/libdata usr/local usr/src \
usr/obj | gzip -9 > snapshot/usr.misc.tar.gz
cd ${DESTDIR} && tar cf - usr/sbin | gzip -9 > snapshot/usr.sbin.tar.gz
cd ${DESTDIR} && tar cf - usr/share | gzip -9 > \
snapshot/usr.share.tar.gz
cd ${DESTDIR} && tar cf - var | gzip -9 > snapshot/var.tar.gz
snap_md:
# nothing here -- look in the machine-dependent Makefile.inc
.endif # DESTDIR check
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>