summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkleink <kleink@NetBSD.org>1998-04-28 16:27:51 +0000
committerkleink <kleink@NetBSD.org>1998-04-28 16:27:51 +0000
commitd40e7c810bc66b1cc4eae1767735c844b8fbf251 (patch)
tree71040142d3f25c2f12a80c8004a2a2859164630c
parent968bd8ab136900a93632319eafce81280794fea7 (diff)
Make adding new source files easier and enhance readability by ordering SRCS
items by (Net)BSD version first, then alphabetically.
-rw-r--r--sys/compat/common/Makefile23
1 files changed, 17 insertions, 6 deletions
diff --git a/sys/compat/common/Makefile b/sys/compat/common/Makefile
index 11957cc76d1..52caf69e32f 100644
--- a/sys/compat/common/Makefile
+++ b/sys/compat/common/Makefile
@@ -1,16 +1,27 @@
-# $NetBSD: Makefile,v 1.20 1997/11/25 19:32:15 kleink Exp $
+# $NetBSD: Makefile,v 1.21 1998/04/28 16:27:51 kleink Exp $
LIB= compat
NOPIC=
CPPFLAGS= ${COMPATCPPFLAGS}
-SRCS= compat_exec.c compat_util.c kern_exit_43.c kern_info_09.c \
- kern_info_43.c kern_resource_43.c kern_sig_13.c kern_sig_43.c \
- kern_xxx_12.c tty_43.c uipc_syscalls_43.c vfs_syscalls_12.c \
- vfs_syscalls_43.c vm_12.c vm_43.c
+# Common compatibility code, used by all emulations
+SRCS= compat_exec.c compat_util.c
-# really, all machines where sizeof(int) != sizeof(long)
+# Compatibility code for 4.3BSD
+SRCS+= kern_exit_43.c kern_info_43.c kern_resource_43.c kern_sig_43.c \
+ tty_43.c uipc_syscalls_43.c vfs_syscalls_43.c vm_43.c
+
+# Compatibility code for NetBSD 0.9
+SRCS+= kern_info_09.c
+
+# Compatibility code for NetBSD 1.2
+SRCS+= kern_xxx_12.c vfs_syscalls_12.c vm_12.c
+
+# Compatibility code for NetBSD 1.3
+SRCS+= kern_sig_13.c
+
+# really, all machines where sizeof(int) != sizeof(long) (LP64)
.if (${MACHINE_ARCH} != "alpha")
SRCS+= kern_ipc_10.c
.endif