diff options
author | 1997-02-18 22:35:31 +0000 | |
---|---|---|
committer | 1997-02-18 22:35:31 +0000 | |
commit | c5773ead2fa42086fa67b9779380faaaf4886ea8 (patch) | |
tree | 7b9513c808404f2546ec3da87054801d0cf60cdb | |
parent | Add note file to elf executable to tell firmware what mode to boot in. (diff) | |
download | wireguard-openbsd-c5773ead2fa42086fa67b9779380faaaf4886ea8.tar.xz wireguard-openbsd-c5773ead2fa42086fa67b9779380faaaf4886ea8.zip |
Add the note object to the executable.
-rw-r--r-- | sys/arch/powerpc/stand/boot/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/powerpc/stand/boot/Makefile b/sys/arch/powerpc/stand/boot/Makefile index f8c7986218b..ede0d8da159 100644 --- a/sys/arch/powerpc/stand/boot/Makefile +++ b/sys/arch/powerpc/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 1996/12/28 06:31:21 rahnds Exp $ +# $OpenBSD: Makefile,v 1.3 1997/02/18 22:35:31 rahnds Exp $ # $NetBSD: Makefile,v 1.1 1996/09/30 16:35:05 ws Exp $ R= .. @@ -11,6 +11,7 @@ NOMAN= STRIP= MAKEELF= makeelf BINDIR= /usr/mdec +OBJS+= note.o LIBS!= cd $(.CURDIR)/$(R); $(MAKE) libdep |