Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch Need byteorder.c for loadfile_elf*.c
details: https://anonhg.NetBSD.org/src/rev/7f7a9a8c68a7
branches: trunk
changeset: 516866:7f7a9a8c68a7
user: thorpej <thorpej%NetBSD.org@localhost>
date: Wed Oct 31 21:39:02 2001 +0000
description:
Need byteorder.c for loadfile_elf*.c
diffstat:
sys/arch/i386/stand/installboot/Makefile | 6 +++---
sys/arch/mmeye/stand/bootelf/Makefile | 4 ++--
sys/arch/mvme68k/stand/installboot/Makefile | 4 ++--
sys/arch/mvme68k/stand/wrtvid/Makefile | 4 ++--
sys/arch/news68k/stand/installboot/Makefile | 4 ++--
sys/arch/sun3/stand/installboot/Makefile | 4 ++--
sys/arch/sun68k/stand/installboot/Makefile | 4 ++--
7 files changed, 15 insertions(+), 15 deletions(-)
diffs (116 lines):
diff -r eac1d59decb5 -r 7f7a9a8c68a7 sys/arch/i386/stand/installboot/Makefile
--- a/sys/arch/i386/stand/installboot/Makefile Wed Oct 31 21:24:09 2001 +0000
+++ b/sys/arch/i386/stand/installboot/Makefile Wed Oct 31 21:39:02 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.19 2001/10/31 01:51:44 thorpej Exp $
+# $NetBSD: Makefile,v 1.20 2001/10/31 21:39:02 thorpej Exp $
# XXX: bsd.own.mk included so LDSTATIC can be overwridden
.include <bsd.own.mk>
@@ -9,8 +9,8 @@
.PATH.c: ${LIBSA}
-SRCS= installboot.c bootblks.c getmount.c loadfile.c loadfile_aout.c \
- loadfile_elf32.c
+SRCS= installboot.c bootblks.c getmount.c byteorder.c loadfile.c \
+ loadfile_aout.c loadfile_elf32.c
MKMAN= no
diff -r eac1d59decb5 -r 7f7a9a8c68a7 sys/arch/mmeye/stand/bootelf/Makefile
--- a/sys/arch/mmeye/stand/bootelf/Makefile Wed Oct 31 21:24:09 2001 +0000
+++ b/sys/arch/mmeye/stand/bootelf/Makefile Wed Oct 31 21:39:02 2001 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.3 2001/10/31 01:51:44 thorpej Exp $
+# $NetBSD: Makefile,v 1.4 2001/10/31 21:39:03 thorpej Exp $
PROG= bootelf
-SRCS= boot.c loadfile.c loadfile_elf32.c
+SRCS= boot.c byteorder.c loadfile.c loadfile_elf32.c
NOMAN=
LIBSA=${.CURDIR}/../../../../lib/libsa
diff -r eac1d59decb5 -r 7f7a9a8c68a7 sys/arch/mvme68k/stand/installboot/Makefile
--- a/sys/arch/mvme68k/stand/installboot/Makefile Wed Oct 31 21:24:09 2001 +0000
+++ b/sys/arch/mvme68k/stand/installboot/Makefile Wed Oct 31 21:39:02 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2001/10/31 01:51:44 thorpej Exp $
+# $NetBSD: Makefile,v 1.9 2001/10/31 21:39:03 thorpej Exp $
.include <bsd.own.mk>
@@ -18,7 +18,7 @@
.PATH.c: ${LIBSA}
-SRCS= installboot.c loadfile.c loadfile_aout.c loadfile_elf32.c
+SRCS= installboot.c byteorder.c loadfile.c loadfile_aout.c loadfile_elf32.c
machine::
-rm -f $@
diff -r eac1d59decb5 -r 7f7a9a8c68a7 sys/arch/mvme68k/stand/wrtvid/Makefile
--- a/sys/arch/mvme68k/stand/wrtvid/Makefile Wed Oct 31 21:24:09 2001 +0000
+++ b/sys/arch/mvme68k/stand/wrtvid/Makefile Wed Oct 31 21:39:02 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2001/10/31 01:51:45 thorpej Exp $
+# $NetBSD: Makefile,v 1.9 2001/10/31 21:39:03 thorpej Exp $
S=${.CURDIR}/../../../../
HOSTPROG= wrtvid
@@ -10,7 +10,7 @@
.PATH.c: ${LIBSA}
-SRCS= wrtvid.c loadfile.c loadfile_aout.c loadfile_elf32.c
+SRCS= wrtvid.c byteorder.c loadfile.c loadfile_aout.c loadfile_elf32.c
CLEANFILES+= machine m68k
# only needed during build
diff -r eac1d59decb5 -r 7f7a9a8c68a7 sys/arch/news68k/stand/installboot/Makefile
--- a/sys/arch/news68k/stand/installboot/Makefile Wed Oct 31 21:24:09 2001 +0000
+++ b/sys/arch/news68k/stand/installboot/Makefile Wed Oct 31 21:39:02 2001 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2001/10/31 01:51:45 thorpej Exp $
+# $NetBSD: Makefile,v 1.5 2001/10/31 21:39:03 thorpej Exp $
PROG= installboot
-SRCS= installboot.c loadfile.c loadfile_aout.c loadfile_elf32.c
+SRCS= installboot.c byteorder.c loadfile.c loadfile_aout.c loadfile_elf32.c
MKMAN= no
WARNS?= 1
diff -r eac1d59decb5 -r 7f7a9a8c68a7 sys/arch/sun3/stand/installboot/Makefile
--- a/sys/arch/sun3/stand/installboot/Makefile Wed Oct 31 21:24:09 2001 +0000
+++ b/sys/arch/sun3/stand/installboot/Makefile Wed Oct 31 21:39:02 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2001/10/31 01:51:46 thorpej Exp $
+# $NetBSD: Makefile,v 1.14 2001/10/31 21:39:04 thorpej Exp $
.include <bsd.own.mk>
@@ -15,6 +15,6 @@
.PATH.c: ${LIBSA}
-SRCS= installboot.c loadfile.c loadfile_aout.c loadfile_elf32.c
+SRCS= installboot.c byteorder.c loadfile.c loadfile_aout.c loadfile_elf32.c
.include <bsd.prog.mk>
diff -r eac1d59decb5 -r 7f7a9a8c68a7 sys/arch/sun68k/stand/installboot/Makefile
--- a/sys/arch/sun68k/stand/installboot/Makefile Wed Oct 31 21:24:09 2001 +0000
+++ b/sys/arch/sun68k/stand/installboot/Makefile Wed Oct 31 21:39:02 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2001/10/31 01:51:46 thorpej Exp $
+# $NetBSD: Makefile,v 1.3 2001/10/31 21:39:04 thorpej Exp $
.include <bsd.own.mk>
@@ -15,6 +15,6 @@
.PATH.c: ${LIBSA}
-SRCS= installboot.c loadfile.c loadfile_aout.c loadfile_elf32.c
+SRCS= installboot.c byteorder.c loadfile.c loadfile_aout.c loadfile_elf32.c
.include <bsd.prog.mk>
Home |
Main Index |
Thread Index |
Old Index