Deleted Added
full compact
Makefile (36902) Makefile (38103)
1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
2# $Id: Makefile,v 1.166 1998/05/27 12:13:16 jkoshy Exp $
2# $Id: Makefile,v 1.167 1998/06/11 20:25:56 guido Exp $
3
3
4SUBDIR= sendmail
5
4# -rw-r--r--
5BINOWN= root
6BINGRP= wheel
7BIN1= aliases amd.map crontab csh.cshrc csh.login csh.logout dm.conf \
8 ftpusers gettytab group hosts host.conf hosts.equiv hosts.lpd \
9 inetd.conf login.conf login.access motd modems networks \
10 newsyslog.conf phones pccard.conf.sample printcap profile protocols \
11 rc rc.conf rc.firewall rc.local rc.network rc.pccard rc.serial \

--- 21 unchanged lines hidden (view full) ---

33FREEBSD+= ${COPYRIGHT}
34
35# Compatibility stuff, remove those links
36LATIN1LINKS = \
37 da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_US es_ES fi_FI \
38 fr_BE fr_CA fr_CH fr_FR is_IS it_CH it_IT nl_BE nl_NL no_NO \
39 pt_PT sv_SE
40
6# -rw-r--r--
7BINOWN= root
8BINGRP= wheel
9BIN1= aliases amd.map crontab csh.cshrc csh.login csh.logout dm.conf \
10 ftpusers gettytab group hosts host.conf hosts.equiv hosts.lpd \
11 inetd.conf login.conf login.access motd modems networks \
12 newsyslog.conf phones pccard.conf.sample printcap profile protocols \
13 rc rc.conf rc.firewall rc.local rc.network rc.pccard rc.serial \

--- 21 unchanged lines hidden (view full) ---

35FREEBSD+= ${COPYRIGHT}
36
37# Compatibility stuff, remove those links
38LATIN1LINKS = \
39 da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_US es_ES fi_FI \
40 fr_BE fr_CA fr_CH fr_FR is_IS it_CH it_IT nl_BE nl_NL no_NO \
41 pt_PT sv_SE
42
41all depend etc install lint:
43etc:
42
43distribute:
44 cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/bin
45
46distribution:
47 (cd ${.CURDIR}; \
48 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} ${DESTDIR}/etc; \
49 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 755 ${BIN2} ${DESTDIR}/etc; \
50 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
51 ${DESTDIR}/var/cron/log; \
52 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 \
53 master.passwd ${DESTDIR}/etc; \
54 ( cd ${.CURDIR}/periodic; ${MAKE} install );\
55 ( cd ${.CURDIR}/../gnu/usr.bin/send-pr; ${MAKE} etc-gnats-freefall );\
56 ( cd ${.CURDIR}/../gnu/libexec/uucp/sample; ${MAKE} install ); \
57 ( cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap ); \
58 ( cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt ); \
44
45distribute:
46 cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/bin
47
48distribution:
49 (cd ${.CURDIR}; \
50 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} ${DESTDIR}/etc; \
51 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 755 ${BIN2} ${DESTDIR}/etc; \
52 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
53 ${DESTDIR}/var/cron/log; \
54 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 \
55 master.passwd ${DESTDIR}/etc; \
56 ( cd ${.CURDIR}/periodic; ${MAKE} install );\
57 ( cd ${.CURDIR}/../gnu/usr.bin/send-pr; ${MAKE} etc-gnats-freefall );\
58 ( cd ${.CURDIR}/../gnu/libexec/uucp/sample; ${MAKE} install ); \
59 ( cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap ); \
60 ( cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt ); \
59 ( cd ${.CURDIR}/../usr.sbin/sendmail/cf/cf; ${MAKE} etc-sendmail.cf ); \
61 ( cd ${.CURDIR}/sendmail/cf; ${MAKE} etc-sendmail.cf ); \
60 ( cd ${.CURDIR}/../sys/i386/boot/biosboot; ${MAKE} install-boothelp ); \
61 pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd; \
62 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 \
63 MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev )
64 (cd ${DESTDIR}/dev; sh MAKEDEV all) ;
65 (cd ${.CURDIR}/root; \
66 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 dot.cshrc \
67 ${DESTDIR}/root/.cshrc; \

--- 81 unchanged lines hidden ---
62 ( cd ${.CURDIR}/../sys/i386/boot/biosboot; ${MAKE} install-boothelp ); \
63 pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd; \
64 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 \
65 MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev )
66 (cd ${DESTDIR}/dev; sh MAKEDEV all) ;
67 (cd ${.CURDIR}/root; \
68 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 dot.cshrc \
69 ${DESTDIR}/root/.cshrc; \

--- 81 unchanged lines hidden ---