1996-02-06 01:34:09 +03:00
|
|
|
# $NetBSD: Makefile,v 1.56 1996/02/05 22:34:09 jtc Exp $
|
1994-10-26 03:55:40 +03:00
|
|
|
|
|
|
|
# @(#)Makefile 5.45.1.1 (Berkeley) 5/6/91
|
1993-08-01 09:37:30 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
# Doing a make install builds /usr/include
|
|
|
|
#
|
|
|
|
# The ``rm -rf''s used below are safe because rm doesn't follow symbolic
|
|
|
|
# links.
|
1993-04-04 22:59:30 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
# Missing: mp.h
|
|
|
|
|
1996-02-06 01:34:09 +03:00
|
|
|
FILES= a.out.h ar.h assert.h bitstring.h bm.h cpio.h ctype.h db.h dirent.h \
|
|
|
|
disktab.h dlfcn.h err.h fnmatch.h fstab.h fts.h glob.h grp.h ieeefp.h \
|
|
|
|
iso646.h kvm.h langinfo.h limits.h link.h locale.h malloc.h math.h \
|
|
|
|
memory.h mpool.h ndbm.h netdb.h netgroup.h nlist.h nl_types.h paths.h \
|
|
|
|
pwd.h ranlib.h re_comp.h regex.h regexp.h resolv.h search.h setjmp.h \
|
|
|
|
sgtty.h signal.h stab.h stddef.h stdio.h stdlib.h string.h strings.h \
|
|
|
|
struct.h sysexits.h tar.h time.h ttyent.h tzfile.h unistd.h utime.h \
|
|
|
|
utmp.h vis.h
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-10-15 07:57:10 +03:00
|
|
|
MFILES= float.h frame.h stdarg.h varargs.h
|
1994-05-11 07:37:39 +04:00
|
|
|
LFILES= errno.h fcntl.h syslog.h termios.h
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-10-10 02:28:14 +03:00
|
|
|
DIRS= arpa protocols rpc rpcsvc
|
1993-12-22 09:44:10 +03:00
|
|
|
LDIRS= dev net netinet netccitt netiso netns nfs sys ufs vm
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
NOOBJ= noobj
|
|
|
|
|
1993-07-10 07:56:10 +04:00
|
|
|
# Change SYS_INCLUDE in bsd.own.mk to "symlinks" if you don't want copies
|
1994-01-08 15:22:47 +03:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
SYS_INCLUDE?= copies
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-08-16 03:31:16 +04:00
|
|
|
realinstall:
|
1993-03-21 12:45:37 +03:00
|
|
|
@echo installing ${FILES}
|
|
|
|
@-for i in ${FILES}; do \
|
|
|
|
cmp -s $$i ${DESTDIR}/usr/include/$$i || \
|
1994-02-10 06:31:19 +03:00
|
|
|
install -c -m 444 $$i ${DESTDIR}/usr/include/$$i; \
|
1993-03-21 12:45:37 +03:00
|
|
|
done
|
|
|
|
@echo installing ${DIRS}
|
|
|
|
@-for i in ${DIRS}; do \
|
1995-01-16 00:58:40 +03:00
|
|
|
install -d -o ${BINOWN} -g ${BINGRP} -m 755 \
|
1995-01-12 22:18:41 +03:00
|
|
|
${DESTDIR}/usr/include/$$i; \
|
1993-03-21 12:45:37 +03:00
|
|
|
(cd $$i; for j in *.[ih]; do \
|
|
|
|
cmp -s $$j ${DESTDIR}/usr/include/$$i/$$j || \
|
1994-02-10 06:31:19 +03:00
|
|
|
install -c -m 444 $$j ${DESTDIR}/usr/include/$$i/$$j; \
|
1993-03-21 12:45:37 +03:00
|
|
|
done); \
|
|
|
|
done
|
|
|
|
@echo installing ${LFILES}
|
|
|
|
@-for i in ${LFILES}; do \
|
|
|
|
rm -f ${DESTDIR}/usr/include/$$i; \
|
|
|
|
ln -s sys/$$i ${DESTDIR}/usr/include/$$i; \
|
|
|
|
done
|
|
|
|
@echo installing ${MFILES}
|
|
|
|
@-for i in ${MFILES}; do \
|
|
|
|
rm -f ${DESTDIR}/usr/include/$$i; \
|
|
|
|
ln -s machine/$$i ${DESTDIR}/usr/include/$$i; \
|
|
|
|
done
|
1994-02-10 06:31:19 +03:00
|
|
|
chown -R ${BINOWN}:${BINGRP} ${DESTDIR}/usr/include
|
|
|
|
find ${DESTDIR}/usr/include -type f | \
|
1994-07-21 11:33:01 +04:00
|
|
|
xargs chmod a=r
|
|
|
|
find ${DESTDIR}/usr/include -type d | \
|
|
|
|
xargs chmod u=rwx,go=rx
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-04-09 13:38:47 +04:00
|
|
|
beforeinstall:
|
1995-01-12 22:18:41 +03:00
|
|
|
install -d -o ${BINOWN} -g ${BINGRP} -m 755 ${DESTDIR}/usr/include
|
1993-04-09 13:38:47 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
copies:
|
|
|
|
@echo copies: ${LDIRS}
|
|
|
|
@-for i in ${LDIRS}; do \
|
|
|
|
rm -rf ${DESTDIR}/usr/include/$$i; \
|
1995-01-12 22:18:41 +03:00
|
|
|
install -d -o ${BINOWN} -g ${BINGRP} -m 755 \
|
|
|
|
${DESTDIR}/usr/include/$$i ; \
|
1994-06-13 02:49:59 +04:00
|
|
|
done
|
1994-06-22 19:09:35 +04:00
|
|
|
cd ../sys; \
|
1994-08-29 08:59:48 +04:00
|
|
|
pax -rw -pa -L \
|
1995-04-16 23:03:55 +04:00
|
|
|
`find ${LDIRS} -follow -type f -name '*.h' '!' -path \
|
|
|
|
'netiso/xebec/*' -print` ${DESTDIR}/usr/include
|
1993-03-23 02:02:52 +03:00
|
|
|
rm -rf ${DESTDIR}/usr/include/machine
|
1995-01-12 22:18:41 +03:00
|
|
|
install -d -o ${BINOWN} -g ${BINGRP} -m 755 \
|
|
|
|
${DESTDIR}/usr/include/machine
|
1994-07-08 10:17:23 +04:00
|
|
|
pax -rw -pa -s "|../sys/arch/${MACHINE}/include||" \
|
|
|
|
../sys/arch/${MACHINE}/include/*.h \
|
|
|
|
${DESTDIR}/usr/include/machine
|
1994-01-08 15:22:47 +03:00
|
|
|
rm -rf ${DESTDIR}/usr/include/${MACHINE_ARCH}
|
1994-03-31 08:06:01 +04:00
|
|
|
if test ${MACHINE} != ${MACHINE_ARCH} -a \
|
1994-07-08 10:17:23 +04:00
|
|
|
-d ../sys/arch/${MACHINE_ARCH}/include; then \
|
1995-01-12 22:18:41 +03:00
|
|
|
install -d -o ${BINOWN} -g ${BINGRP} -m 755 \
|
1994-07-08 10:17:23 +04:00
|
|
|
${DESTDIR}/usr/include/${MACHINE_ARCH}; \
|
|
|
|
pax -rw -pa -s "|../sys/arch/${MACHINE_ARCH}/include||" \
|
|
|
|
../sys/arch/${MACHINE_ARCH}/include/*.h \
|
|
|
|
${DESTDIR}/usr/include/${MACHINE_ARCH}; \
|
1994-01-08 15:22:47 +03:00
|
|
|
else \
|
1994-07-08 10:17:23 +04:00
|
|
|
ln -s machine ${DESTDIR}/usr/include/${MACHINE_ARCH}; \
|
1994-01-08 15:22:47 +03:00
|
|
|
fi
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
symlinks:
|
|
|
|
@echo symlinks: ${LDIRS}
|
1993-05-05 22:45:25 +04:00
|
|
|
@for i in ${LDIRS}; do \
|
|
|
|
rm -rf ${DESTDIR}/usr/include/$$i; \
|
|
|
|
ln -s /sys/$$i ${DESTDIR}/usr/include/$$i; \
|
|
|
|
done
|
|
|
|
rm -rf ${DESTDIR}/usr/include/machine
|
1993-05-18 13:58:39 +04:00
|
|
|
ln -s /sys/arch/${MACHINE}/include ${DESTDIR}/usr/include/machine
|
1994-01-08 15:22:47 +03:00
|
|
|
rm -rf ${DESTDIR}/usr/include/${MACHINE_ARCH}
|
1994-03-31 08:06:01 +04:00
|
|
|
if test ${MACHINE} != ${MACHINE_ARCH} -a \
|
|
|
|
-d ../sys/arch/${MACHINE_ARCH}/include ; then \
|
1994-01-08 15:22:47 +03:00
|
|
|
ln -s /sys/arch/${MACHINE_ARCH}/include \
|
|
|
|
${DESTDIR}/usr/include/${MACHINE_ARCH} ; \
|
|
|
|
else \
|
|
|
|
ln -s machine ${DESTDIR}/usr/include/${MACHINE_ARCH} ; \
|
|
|
|
fi
|
1993-05-05 22:45:25 +04:00
|
|
|
|
1993-05-06 06:22:41 +04:00
|
|
|
.include <bsd.prog.mk>
|
1993-08-16 04:26:07 +04:00
|
|
|
|
|
|
|
realinstall: ${SYS_INCLUDE}
|