NetBSD/include/Makefile

117 lines
3.7 KiB
Makefile
Raw Normal View History

1996-09-07 21:47:50 +04:00
# $NetBSD: Makefile,v 1.61 1996/09/07 17:47:50 mycroft 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
FILES= a.out.h ar.h assert.h bitstring.h bm.h cpio.h ctype.h db.h dirent.h \
disktab.h err.h fnmatch.h fstab.h fts.h glob.h grp.h ieeefp.h \
iso646.h kvm.h langinfo.h limits.h locale.h malloc.h math.h \
memory.h mpool.h ndbm.h netdb.h netgroup.h nlist.h nl_types.h paths.h \
1996-08-09 08:01:48 +04:00
pwd.h ranlib.h re_comp.h regex.h regexp.h resolv.h rmt.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 \
util.h utime.h utmp.h vis.h
1993-03-21 12:45:37 +03:00
.if (${MACHINE_ARCH} != "alpha")
FILES+= dlfcn.h link.h
.endif
MFILES= float.h frame.h stdarg.h varargs.h
1996-09-07 21:47:50 +04:00
LFILES= errno.h fcntl.h poll.h syslog.h termios.h
1993-03-21 12:45:37 +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
# Change SYS_INCLUDE in bsd.own.mk to "symlinks" if you don't want copies
.include <bsd.own.mk>
SYS_INCLUDE?= copies
1993-03-21 12:45:37 +03:00
includes:
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 | \
xargs chmod a=r
find ${DESTDIR}/usr/include -type d | \
xargs chmod u=rwx,go=rx
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 ; \
done
cd ../sys; \
1994-08-29 08:59:48 +04:00
pax -rw -pa -L \
`find ${LDIRS} -follow -type f -name '*.h' '!' -path \
'netiso/xebec/*' -print` ${DESTDIR}/usr/include
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
pax -rw -pa -s "|../sys/arch/${MACHINE}/include||" \
../sys/arch/${MACHINE}/include/*.h \
${DESTDIR}/usr/include/machine
rm -rf ${DESTDIR}/usr/include/${MACHINE_ARCH}
if test ${MACHINE} != ${MACHINE_ARCH} -a \
-d ../sys/arch/${MACHINE_ARCH}/include; then \
1995-01-12 22:18:41 +03:00
install -d -o ${BINOWN} -g ${BINGRP} -m 755 \
${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}; \
else \
ln -s machine ${DESTDIR}/usr/include/${MACHINE_ARCH}; \
fi
1993-03-21 12:45:37 +03:00
symlinks:
@echo symlinks: ${LDIRS}
@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
rm -rf ${DESTDIR}/usr/include/${MACHINE_ARCH}
if test ${MACHINE} != ${MACHINE_ARCH} -a \
-d ../sys/arch/${MACHINE_ARCH}/include ; then \
ln -s /sys/arch/${MACHINE_ARCH}/include \
${DESTDIR}/usr/include/${MACHINE_ARCH} ; \
else \
ln -s machine ${DESTDIR}/usr/include/${MACHINE_ARCH} ; \
fi
includes: ${SYS_INCLUDE}
.include <bsd.prog.mk>