Module Name: src
Committed By: he
Date: Fri Sep 25 11:19:35 UTC 2009
Modified Files:
src/sys/arch/sun68k/stand/libsa: Makefile.inc
Log Message:
Use .PATH.S instead of giving a source file with fully qualified path.
This should avoid the sun3 port contaminating its source tree during build
with .d and .o files corresponding to ctrlsp.S.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/sun68k/stand/libsa/Makefile.inc
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/sun68k/stand/libsa/Makefile.inc
diff -u src/sys/arch/sun68k/stand/libsa/Makefile.inc:1.1 src/sys/arch/sun68k/stand/libsa/Makefile.inc:1.2
--- src/sys/arch/sun68k/stand/libsa/Makefile.inc:1.1 Fri Mar 20 11:42:25 2009
+++ src/sys/arch/sun68k/stand/libsa/Makefile.inc Fri Sep 25 11:19:35 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.1 2009/03/20 11:42:25 tsutsui Exp $
+# $NetBSD: Makefile.inc,v 1.2 2009/09/25 11:19:35 he Exp $
S!= cd ${SA_EXTRADIR}/../../../..; pwd
@@ -11,7 +11,8 @@
promboot.c promcons.c promdev.c putstr.c \
sun2.c sun3.c sun3x.c xxboot.c
-SRCS+= ${S}/arch/sun68k/sun68k/ctrlsp.S
+.PATH.S: ${S}/arch/sun68k/sun68k
+SRCS+= ctrlsp.S
# XXX libkern builds these only on m68000
.PATH.S: ${S}/../common/lib/libc/arch/m68k/gen