Module Name: src
Committed By: riastradh
Date: Mon Jun 24 18:00:32 UTC 2024
Modified Files:
src/sys/arch/amd64/stand/prekern: Makefile
Log Message:
amd64/prekern: Add ldscript to DPADD since it affects build output.
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/amd64/stand/prekern/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/amd64/stand/prekern/Makefile
diff -u src/sys/arch/amd64/stand/prekern/Makefile:1.8 src/sys/arch/amd64/stand/prekern/Makefile:1.9
--- src/sys/arch/amd64/stand/prekern/Makefile:1.8 Wed Jul 25 23:45:32 2018
+++ src/sys/arch/amd64/stand/prekern/Makefile Mon Jun 24 18:00:32 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2018/07/25 23:45:32 kamil Exp $
+# $NetBSD: Makefile,v 1.9 2024/06/24 18:00:32 riastradh Exp $
PROG= prekern
SRCS= locore.S trap.S prekern.c mm.c console.c elf.c prng.c
@@ -29,6 +29,7 @@ CFLAGS+= -mno-red-zone -mno-mmx -mno-sse
STRIPFLAG=
LINKFLAGS= -X -z max-page-size=0x100000 -Ttext 0x100000 \
-T ${S}/arch/amd64/stand/prekern/prekern.ldscript
+DPADD+= prekern.ldscript
KERN_AS= library
.include "${S}/lib/libkern/Makefile.inc"