diff options
| author | cgd <cgd@NetBSD.org> | 1996-05-10 04:51:34 +0000 |
|---|---|---|
| committer | cgd <cgd@NetBSD.org> | 1996-05-10 04:51:34 +0000 |
| commit | 69e9aa01fcfc5e7a69a5abc113b50d03470ecb63 (patch) | |
| tree | 904ed713f0d5cce0ea5ae14f4de5d02059045057 /include | |
| parent | 82b89f1181f9f449217edc0d4caea22f911a62b1 (diff) | |
don't install dlfcn.h or link.h on the Alpha, because they make no
sense for that architecture. (It doesn't have dynamic linking or
shared libraries.)
Diffstat (limited to 'include')
| -rw-r--r-- | include/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/Makefile b/include/Makefile index ad87c51cfc0..5002f979dba 100644 --- a/include/Makefile +++ b/include/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.57 1996/04/25 00:55:44 jtc Exp $ +# $NetBSD: Makefile,v 1.58 1996/05/10 04:51:34 cgd Exp $ # @(#)Makefile 5.45.1.1 (Berkeley) 5/6/91 @@ -10,14 +10,18 @@ # 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 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 \ + 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 \ 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 +.if (${MACHINE_ARCH} != "alpha") +FILES+= dlfcn.h link.h +.endif + MFILES= float.h frame.h stdarg.h varargs.h LFILES= errno.h fcntl.h syslog.h termios.h |
