1997-01-30 01:05:58 +00:00
|
|
|
# $NetBSD: Makefile,v 1.67 1997/01/30 01:05:58 thorpej Exp $
|
1994-10-26 00:55:40 +00:00
|
|
|
# @(#)Makefile 5.45.1.1 (Berkeley) 5/6/91
|
1993-08-01 05:37:30 +00:00
|
|
|
|
1993-03-21 09:45:37 +00:00
|
|
|
# Missing: mp.h
|
|
|
|
|
1996-02-05 22:34:09 +00:00
|
|
|
FILES= a.out.h ar.h assert.h bitstring.h bm.h cpio.h ctype.h db.h dirent.h \
|
1996-12-18 22:18:39 +00:00
|
|
|
disktab.h dlfcn.h err.h fnmatch.h fstab.h fts.h glob.h grp.h ieeefp.h \
|
1997-01-30 01:05:58 +00:00
|
|
|
iso646.h kvm.h langinfo.h limits.h locale.h malloc.h math.h md4.h \
|
|
|
|
md5.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 rmt.h \
|
|
|
|
search.h setjmp.h sgtty.h signal.h stab.h stddef.h stdio.h stdlib.h \
|
|
|
|
string.h strings.h stringlist.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 09:45:37 +00:00
|
|
|
|
1993-10-09 23:28:14 +00:00
|
|
|
DIRS= arpa protocols rpc rpcsvc
|
1993-03-21 09:45:37 +00:00
|
|
|
|
|
|
|
NOOBJ= noobj
|
|
|
|
|
1996-09-29 23:29:16 +00:00
|
|
|
includes: ${SYS_INCLUDE}
|
1993-03-21 09:45:37 +00:00
|
|
|
|
1996-04-25 00:55:44 +00:00
|
|
|
includes:
|
1993-03-21 09:45:37 +00:00
|
|
|
@echo installing ${FILES}
|
|
|
|
@-for i in ${FILES}; do \
|
|
|
|
cmp -s $$i ${DESTDIR}/usr/include/$$i || \
|
1996-10-18 02:52:59 +00:00
|
|
|
${INSTALL} -c -m 444 $$i ${DESTDIR}/usr/include/$$i; \
|
1993-03-21 09:45:37 +00:00
|
|
|
done
|
|
|
|
@echo installing ${DIRS}
|
|
|
|
@-for i in ${DIRS}; do \
|
1996-10-18 02:52:59 +00:00
|
|
|
${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
|
1995-01-12 19:18:41 +00:00
|
|
|
${DESTDIR}/usr/include/$$i; \
|
1993-03-21 09:45:37 +00:00
|
|
|
(cd $$i; for j in *.[ih]; do \
|
|
|
|
cmp -s $$j ${DESTDIR}/usr/include/$$i/$$j || \
|
1996-10-18 02:52:59 +00:00
|
|
|
${INSTALL} -c -m 444 $$j \
|
|
|
|
${DESTDIR}/usr/include/$$i/$$j; \
|
1993-03-21 09:45:37 +00:00
|
|
|
done); \
|
|
|
|
done
|
1994-02-10 03:31:19 +00:00
|
|
|
chown -R ${BINOWN}:${BINGRP} ${DESTDIR}/usr/include
|
|
|
|
find ${DESTDIR}/usr/include -type f | \
|
1994-07-21 07:33:01 +00:00
|
|
|
xargs chmod a=r
|
|
|
|
find ${DESTDIR}/usr/include -type d | \
|
|
|
|
xargs chmod u=rwx,go=rx
|
1993-03-21 09:45:37 +00:00
|
|
|
|
1996-04-25 00:55:44 +00:00
|
|
|
.include <bsd.prog.mk>
|